Load and Download the Data

wiki <- read_csv(file.path("..", "data", "wiki_data_years_new.csv"))
token <- read_csv(file.path("..", "data", "wiki_data_years_new.csv.gz"))

Project Code

docs <- wiki
anno <- token
docs
## # A tibble: 2,023 x 3
##    doc_id  train_id text                                                    
##    <chr>   <chr>    <chr>                                                   
##  1 doc0001 train    "Political entities State leaders Births Deaths AD 1 or~
##  2 doc0002 valid    "Political entities State leaders Births Deaths AD 2 (I~
##  3 doc0003 valid    "Political entities State leaders Births Deaths AD 3 (I~
##  4 doc0004 valid    "Political entities State leaders Births Deaths AD 4 wa~
##  5 doc0005 train    "Political entities State leaders Births AD 5 was a com~
##  6 doc0006 train    "Political entities State leaders Births Deaths Establi~
##  7 doc0007 train    "Political entities State leaders Births Deaths AD 7 wa~
##  8 doc0008 valid    "Political entities State leaders Births Deaths AD 8 wa~
##  9 doc0009 valid    "Political entities State leaders Births Deaths Disesta~
## 10 doc0010 valid    "Political entities State leaders Births AD 10 (X) was ~
## # i 2,013 more rows
docs <- docs %>%
  mutate(year = substr(doc_id,4,7)) %>%
  mutate(century = floor(as.integer(year)/100)+1) %>%
  mutate(decade = floor(as.integer(year)/10) * 10)
docs
## # A tibble: 2,023 x 6
##    doc_id  train_id text                                year  century decade
##    <chr>   <chr>    <chr>                               <chr>   <dbl>  <dbl>
##  1 doc0001 train    "Political entities State leaders ~ 0001        1      0
##  2 doc0002 valid    "Political entities State leaders ~ 0002        1      0
##  3 doc0003 valid    "Political entities State leaders ~ 0003        1      0
##  4 doc0004 valid    "Political entities State leaders ~ 0004        1      0
##  5 doc0005 train    "Political entities State leaders ~ 0005        1      0
##  6 doc0006 train    "Political entities State leaders ~ 0006        1      0
##  7 doc0007 train    "Political entities State leaders ~ 0007        1      0
##  8 doc0008 valid    "Political entities State leaders ~ 0008        1      0
##  9 doc0009 valid    "Political entities State leaders ~ 0009        1      0
## 10 doc0010 valid    "Political entities State leaders ~ 0010        1     10
## # i 2,013 more rows
anno <- anno %>%
  filter(grepl("^\\.[a-zA-z0-9-]+$|.mw-parser-output|background:url|^px$|^em$|^-lock|^-repeat|^-green.svg|^/9$|^-output|^\\\"$|^0.1$|^-ws|^//upload.wikim|^-limited|^-registration|^lock-limited$|^cite.citation$|^ul$|^-size|^.frac|^border-bottom|^border-top|^-dotted|^//12$|^-code|^color:|^word-wrap", anno$token) == FALSE) 
dsst_kwic(anno, terms = "q\\{")
## Warning in max(stringi::stri_length(unique(temp$text[temp$part == 0.5]))):
## no non-missing arguments to max; returning -Inf
## Warning in stringi::stri_pad_right(temp$text[temp$part == 0.5], nw): NAs
## introduced by coercion to integer range
## Warning: There was 1 warning in `dplyr::mutate()`.
## i In argument: `text = dplyr::if_else(...)`.
## Caused by warning in `min()`:
## ! no non-missing arguments to min; returning Inf
## Warning in max(stringi::stri_length(unique(temp$doc_id))): no non-missing
## arguments to max; returning -Inf
## Warning in stringi::stri_pad_right(temp$doc_id, nmax + 1L): NAs introduced
## by coercion to integer range
docs %>%
  group_by(decade) %>%
  summarize(n())
## # A tibble: 203 x 2
##    decade `n()`
##     <dbl> <int>
##  1      0     9
##  2     10    10
##  3     20    10
##  4     30    10
##  5     40    10
##  6     50    10
##  7     60    10
##  8     70    10
##  9     80    10
## 10     90    10
## # i 193 more rows
anno
## # A tibble: 3,185,043 x 11
##    doc_id   sid   tid token token_with_ws lemma upos  xpos  feats tid_source
##    <chr>  <dbl> <dbl> <chr> <chr>         <chr> <chr> <chr> <chr>      <dbl>
##  1 doc00~     1     1 Poli~ Political     poli~ ADJ   JJ    Degr~          2
##  2 doc00~     1     2 enti~ entities      enti~ NOUN  NNS   Numb~          3
##  3 doc00~     1     3 State State         State VERB  VBP   Mood~          0
##  4 doc00~     1     4 lead~ leaders       lead~ NOUN  NNS   Numb~          6
##  5 doc00~     1     5 Birt~ Births        Birt~ PROPN NNPS  Numb~          6
##  6 doc00~     1     6 Deat~ Deaths        deat~ PROPN NNPS  Numb~          3
##  7 doc00~     1     9 or    or            or    CCONJ CC    <NA>          10
##  8 doc00~     1    12 was   was           be    AUX   VBD   Mood~         15
##  9 doc00~     1    14 epoch epoch         epoch ADJ   JJ    Degr~         15
## 10 doc00~     1    15 year  year          year  NOUN  NN    Numb~          3
## # i 3,185,033 more rows
## # i 1 more variable: relation <chr>
docs %>%
  group_by(decade) %>%
  summarize(n())
## # A tibble: 203 x 2
##    decade `n()`
##     <dbl> <int>
##  1      0     9
##  2     10    10
##  3     20    10
##  4     30    10
##  5     40    10
##  6     50    10
##  7     60    10
##  8     70    10
##  9     80    10
## 10     90    10
## # i 193 more rows
model3 <- anno %>%
  dsst_enet_build(docs, label = "century")
## Training
## 
  |                                                                        
  |                                                                  |   0%
  |                                                                        
  |=                                                                 |   1%
  |                                                                        
  |=                                                                 |   2%
  |                                                                        
  |==                                                                |   3%
  |                                                                        
  |===                                                               |   4%
  |                                                                        
  |===                                                               |   5%
  |                                                                        
  |====                                                              |   6%
  |                                                                        
  |=====                                                             |   7%
  |                                                                        
  |=====                                                             |   8%
  |                                                                        
  |======                                                            |   9%
  |                                                                        
  |=======                                                           |  10%
  |                                                                        
  |=======                                                           |  11%
  |                                                                        
  |========                                                          |  12%
  |                                                                        
  |=========                                                         |  13%
  |                                                                        
  |=========                                                         |  14%
  |                                                                        
  |==========                                                        |  15%
  |                                                                        
  |===========                                                       |  16%
  |                                                                        
  |===========                                                       |  17%
  |                                                                        
  |============                                                      |  18%
  |                                                                        
  |=============                                                     |  19%
  |                                                                        
  |=============                                                     |  20%
  |                                                                        
  |==============                                                    |  21%
  |                                                                        
  |===============                                                   |  22%
  |                                                                        
  |===============                                                   |  23%
  |                                                                        
  |================                                                  |  24%
  |                                                                        
  |================                                                  |  25%
  |                                                                        
  |=================                                                 |  26%
  |                                                                        
  |==================                                                |  27%
  |                                                                        
  |==================                                                |  28%
  |                                                                        
  |===================                                               |  29%
  |                                                                        
  |====================                                              |  30%
  |                                                                        
  |====================                                              |  31%
  |                                                                        
  |=====================                                             |  32%
  |                                                                        
  |======================                                            |  33%
  |                                                                        
  |======================                                            |  34%
  |                                                                        
  |=======================                                           |  35%
  |                                                                        
  |========================                                          |  36%
  |                                                                        
  |========================                                          |  37%
  |                                                                        
  |=========================                                         |  38%
  |                                                                        
  |==========================                                        |  39%
  |                                                                        
  |==========================                                        |  40%
  |                                                                        
  |===========================                                       |  41%
  |                                                                        
  |============================                                      |  42%
  |                                                                        
  |============================                                      |  43%
  |                                                                        
  |=============================                                     |  44%
  |                                                                        
  |==============================                                    |  45%
  |                                                                        
  |==============================                                    |  46%
  |                                                                        
  |===============================                                   |  47%
  |                                                                        
  |================================                                  |  48%
  |                                                                        
  |================================                                  |  49%
  |                                                                        
  |=================================                                 |  50%
  |                                                                        
  |==================================                                |  51%
  |                                                                        
  |==================================                                |  52%
  |                                                                        
  |===================================                               |  53%
  |                                                                        
  |====================================                              |  54%
  |                                                                        
  |====================================                              |  55%
  |                                                                        
  |=====================================                             |  56%
  |                                                                        
  |======================================                            |  57%
  |                                                                        
  |======================================                            |  58%
  |                                                                        
  |=======================================                           |  59%
  |                                                                        
  |========================================                          |  60%
  |                                                                        
  |========================================                          |  61%
  |                                                                        
  |=========================================                         |  62%
  |                                                                        
  |==========================================                        |  63%
  |                                                                        
  |==========================================                        |  64%
  |                                                                        
  |===========================================                       |  65%
  |                                                                        
  |============================================                      |  66%
  |                                                                        
  |============================================                      |  67%
  |                                                                        
  |=============================================                     |  68%
  |                                                                        
  |==============================================                    |  69%
  |                                                                        
  |==============================================                    |  70%
  |                                                                        
  |===============================================                   |  71%
  |                                                                        
  |================================================                  |  72%
  |                                                                        
  |================================================                  |  73%
  |                                                                        
  |=================================================                 |  74%
  |                                                                        
  |==================================================                |  75%
  |                                                                        
  |==================================================                |  76%
  |                                                                        
  |===================================================               |  77%
  |                                                                        
  |===================================================               |  78%
  |                                                                        
  |====================================================              |  79%
  |                                                                        
  |=====================================================             |  80%
  |                                                                        
  |=====================================================             |  81%
  |                                                                        
  |======================================================            |  82%
  |                                                                        
  |=======================================================           |  83%
  |                                                                        
  |=======================================================           |  84%
  |                                                                        
  |========================================================          |  85%
  |                                                                        
  |=========================================================         |  86%
  |                                                                        
  |=========================================================         |  87%
  |                                                                        
  |==========================================================        |  88%
  |                                                                        
  |===========================================================       |  89%
  |                                                                        
  |===========================================================       |  90%
  |                                                                        
  |============================================================      |  91%
  |                                                                        
  |=============================================================     |  92%
  |                                                                        
  |=============================================================     |  93%
  |                                                                        
  |==============================================================    |  94%
  |                                                                        
  |===============================================================   |  95%
  |                                                                        
  |===============================================================   |  96%
  |                                                                        
  |================================================================  |  97%
  |                                                                        
  |================================================================= |  98%
  |                                                                        
  |================================================================= |  99%
  |                                                                        
  |==================================================================| 100%
## Fold: 1/3
## 
  |                                                                        
  |                                                                  |   0%
  |                                                                        
  |=                                                                 |   1%
  |                                                                        
  |=                                                                 |   2%
  |                                                                        
  |==                                                                |   3%
  |                                                                        
  |===                                                               |   4%
  |                                                                        
  |===                                                               |   5%
  |                                                                        
  |====                                                              |   6%
  |                                                                        
  |=====                                                             |   7%
  |                                                                        
  |=====                                                             |   8%
  |                                                                        
  |======                                                            |   9%
  |                                                                        
  |=======                                                           |  10%
  |                                                                        
  |=======                                                           |  11%
  |                                                                        
  |========                                                          |  12%
  |                                                                        
  |=========                                                         |  13%
  |                                                                        
  |=========                                                         |  14%
  |                                                                        
  |==========                                                        |  15%
  |                                                                        
  |===========                                                       |  16%
  |                                                                        
  |===========                                                       |  17%
  |                                                                        
  |============                                                      |  18%
  |                                                                        
  |=============                                                     |  19%
  |                                                                        
  |=============                                                     |  20%
  |                                                                        
  |==============                                                    |  21%
  |                                                                        
  |===============                                                   |  22%
  |                                                                        
  |===============                                                   |  23%
  |                                                                        
  |================                                                  |  24%
  |                                                                        
  |================                                                  |  25%
  |                                                                        
  |=================                                                 |  26%
  |                                                                        
  |==================                                                |  27%
  |                                                                        
  |==================                                                |  28%
  |                                                                        
  |===================                                               |  29%
  |                                                                        
  |====================                                              |  30%
  |                                                                        
  |====================                                              |  31%
  |                                                                        
  |=====================                                             |  32%
  |                                                                        
  |======================                                            |  33%
  |                                                                        
  |======================                                            |  34%
  |                                                                        
  |=======================                                           |  35%
  |                                                                        
  |========================                                          |  36%
  |                                                                        
  |========================                                          |  37%
  |                                                                        
  |=========================                                         |  38%
  |                                                                        
  |==========================                                        |  39%
  |                                                                        
  |==========================                                        |  40%
  |                                                                        
  |===========================                                       |  41%
  |                                                                        
  |============================                                      |  42%
  |                                                                        
  |============================                                      |  43%
  |                                                                        
  |=============================                                     |  44%
  |                                                                        
  |==============================                                    |  45%
  |                                                                        
  |==============================                                    |  46%
  |                                                                        
  |===============================                                   |  47%
  |                                                                        
  |================================                                  |  48%
  |                                                                        
  |================================                                  |  49%
  |                                                                        
  |=================================                                 |  50%
  |                                                                        
  |==================================                                |  51%
  |                                                                        
  |==================================                                |  52%
  |                                                                        
  |===================================                               |  53%
  |                                                                        
  |====================================                              |  54%
  |                                                                        
  |====================================                              |  55%
  |                                                                        
  |=====================================                             |  56%
  |                                                                        
  |======================================                            |  57%
  |                                                                        
  |======================================                            |  58%
  |                                                                        
  |=======================================                           |  59%
  |                                                                        
  |========================================                          |  60%
  |                                                                        
  |========================================                          |  61%
  |                                                                        
  |=========================================                         |  62%
  |                                                                        
  |==========================================                        |  63%
  |                                                                        
  |==========================================                        |  64%
  |                                                                        
  |===========================================                       |  65%
  |                                                                        
  |============================================                      |  66%
  |                                                                        
  |============================================                      |  67%
  |                                                                        
  |=============================================                     |  68%
  |                                                                        
  |==============================================                    |  69%
  |                                                                        
  |==============================================                    |  70%
  |                                                                        
  |===============================================                   |  71%
  |                                                                        
  |================================================                  |  72%
  |                                                                        
  |================================================                  |  73%
  |                                                                        
  |=================================================                 |  74%
  |                                                                        
  |==================================================                |  75%
  |                                                                        
  |==================================================                |  76%
  |                                                                        
  |===================================================               |  77%
  |                                                                        
  |===================================================               |  78%
  |                                                                        
  |====================================================              |  79%
  |                                                                        
  |=====================================================             |  80%
  |                                                                        
  |=====================================================             |  81%
  |                                                                        
  |======================================================            |  82%
  |                                                                        
  |=======================================================           |  83%
  |                                                                        
  |=======================================================           |  84%
  |                                                                        
  |========================================================          |  85%
  |                                                                        
  |=========================================================         |  86%
  |                                                                        
  |=========================================================         |  87%
  |                                                                        
  |==========================================================        |  88%
  |                                                                        
  |===========================================================       |  89%
  |                                                                        
  |===========================================================       |  90%
  |                                                                        
  |============================================================      |  91%
  |                                                                        
  |=============================================================     |  92%
  |                                                                        
  |=============================================================     |  93%
  |                                                                        
  |==============================================================    |  94%
  |                                                                        
  |===============================================================   |  95%
  |                                                                        
  |===============================================================   |  96%
  |                                                                        
  |================================================================  |  97%
  |                                                                        
  |================================================================= |  98%
  |                                                                        
  |================================================================= |  99%
  |                                                                        
  |==================================================================| 100%
## Fold: 2/3
## 
  |                                                                        
  |                                                                  |   0%
  |                                                                        
  |=                                                                 |   1%
  |                                                                        
  |=                                                                 |   2%
  |                                                                        
  |==                                                                |   3%
  |                                                                        
  |===                                                               |   4%
  |                                                                        
  |===                                                               |   5%
  |                                                                        
  |====                                                              |   6%
  |                                                                        
  |=====                                                             |   7%
  |                                                                        
  |=====                                                             |   8%
  |                                                                        
  |======                                                            |   9%
  |                                                                        
  |=======                                                           |  10%
  |                                                                        
  |=======                                                           |  11%
  |                                                                        
  |========                                                          |  12%
  |                                                                        
  |=========                                                         |  13%
  |                                                                        
  |=========                                                         |  14%
  |                                                                        
  |==========                                                        |  15%
  |                                                                        
  |===========                                                       |  16%
  |                                                                        
  |===========                                                       |  17%
  |                                                                        
  |============                                                      |  18%
  |                                                                        
  |=============                                                     |  19%
  |                                                                        
  |=============                                                     |  20%
  |                                                                        
  |==============                                                    |  21%
  |                                                                        
  |===============                                                   |  22%
  |                                                                        
  |===============                                                   |  23%
  |                                                                        
  |================                                                  |  24%
  |                                                                        
  |================                                                  |  25%
  |                                                                        
  |=================                                                 |  26%
  |                                                                        
  |==================                                                |  27%
  |                                                                        
  |==================                                                |  28%
  |                                                                        
  |===================                                               |  29%
  |                                                                        
  |====================                                              |  30%
  |                                                                        
  |====================                                              |  31%
  |                                                                        
  |=====================                                             |  32%
  |                                                                        
  |======================                                            |  33%
  |                                                                        
  |======================                                            |  34%
  |                                                                        
  |=======================                                           |  35%
  |                                                                        
  |========================                                          |  36%
  |                                                                        
  |========================                                          |  37%
  |                                                                        
  |=========================                                         |  38%
  |                                                                        
  |==========================                                        |  39%
  |                                                                        
  |==========================                                        |  40%
  |                                                                        
  |===========================                                       |  41%
  |                                                                        
  |============================                                      |  42%
  |                                                                        
  |============================                                      |  43%
  |                                                                        
  |=============================                                     |  44%
  |                                                                        
  |==============================                                    |  45%
  |                                                                        
  |==============================                                    |  46%
  |                                                                        
  |===============================                                   |  47%
  |                                                                        
  |================================                                  |  48%
  |                                                                        
  |================================                                  |  49%
  |                                                                        
  |=================================                                 |  50%
  |                                                                        
  |==================================                                |  51%
  |                                                                        
  |==================================                                |  52%
  |                                                                        
  |===================================                               |  53%
  |                                                                        
  |====================================                              |  54%
  |                                                                        
  |====================================                              |  55%
  |                                                                        
  |=====================================                             |  56%
  |                                                                        
  |======================================                            |  57%
  |                                                                        
  |======================================                            |  58%
  |                                                                        
  |=======================================                           |  59%
  |                                                                        
  |========================================                          |  60%
  |                                                                        
  |========================================                          |  61%
  |                                                                        
  |=========================================                         |  62%
  |                                                                        
  |==========================================                        |  63%
  |                                                                        
  |==========================================                        |  64%
  |                                                                        
  |===========================================                       |  65%
  |                                                                        
  |============================================                      |  66%
  |                                                                        
  |============================================                      |  67%
  |                                                                        
  |=============================================                     |  68%
  |                                                                        
  |==============================================                    |  69%
  |                                                                        
  |==============================================                    |  70%
  |                                                                        
  |===============================================                   |  71%
  |                                                                        
  |================================================                  |  72%
  |                                                                        
  |================================================                  |  73%
  |                                                                        
  |=================================================                 |  74%
  |                                                                        
  |==================================================                |  75%
  |                                                                        
  |==================================================                |  76%
  |                                                                        
  |===================================================               |  77%
  |                                                                        
  |===================================================               |  78%
  |                                                                        
  |====================================================              |  79%
  |                                                                        
  |=====================================================             |  80%
  |                                                                        
  |=====================================================             |  81%
  |                                                                        
  |======================================================            |  82%
  |                                                                        
  |=======================================================           |  83%
  |                                                                        
  |=======================================================           |  84%
  |                                                                        
  |========================================================          |  85%
  |                                                                        
  |=========================================================         |  86%
  |                                                                        
  |=========================================================         |  87%
  |                                                                        
  |==========================================================        |  88%
  |                                                                        
  |===========================================================       |  89%
  |                                                                        
  |===========================================================       |  90%
  |                                                                        
  |============================================================      |  91%
  |                                                                        
  |=============================================================     |  92%
  |                                                                        
  |=============================================================     |  93%
  |                                                                        
  |==============================================================    |  94%
  |                                                                        
  |===============================================================   |  95%
  |                                                                        
  |===============================================================   |  96%
  |                                                                        
  |================================================================  |  97%
  |                                                                        
  |================================================================= |  98%
  |                                                                        
  |================================================================= |  99%
  |                                                                        
  |==================================================================| 100%
## Fold: 3/3
## 
  |                                                                        
  |                                                                  |   0%
  |                                                                        
  |=                                                                 |   1%
  |                                                                        
  |=                                                                 |   2%
  |                                                                        
  |==                                                                |   3%
  |                                                                        
  |===                                                               |   4%
  |                                                                        
  |===                                                               |   5%
  |                                                                        
  |====                                                              |   6%
  |                                                                        
  |=====                                                             |   7%
  |                                                                        
  |=====                                                             |   8%
  |                                                                        
  |======                                                            |   9%
  |                                                                        
  |=======                                                           |  10%
  |                                                                        
  |=======                                                           |  11%
  |                                                                        
  |========                                                          |  12%
  |                                                                        
  |=========                                                         |  13%
  |                                                                        
  |=========                                                         |  14%
  |                                                                        
  |==========                                                        |  15%
  |                                                                        
  |===========                                                       |  16%
  |                                                                        
  |===========                                                       |  17%
  |                                                                        
  |============                                                      |  18%
  |                                                                        
  |=============                                                     |  19%
  |                                                                        
  |=============                                                     |  20%
  |                                                                        
  |==============                                                    |  21%
  |                                                                        
  |===============                                                   |  22%
  |                                                                        
  |===============                                                   |  23%
  |                                                                        
  |================                                                  |  24%
  |                                                                        
  |================                                                  |  25%
  |                                                                        
  |=================                                                 |  26%
  |                                                                        
  |==================                                                |  27%
  |                                                                        
  |==================                                                |  28%
  |                                                                        
  |===================                                               |  29%
  |                                                                        
  |====================                                              |  30%
  |                                                                        
  |====================                                              |  31%
  |                                                                        
  |=====================                                             |  32%
  |                                                                        
  |======================                                            |  33%
  |                                                                        
  |======================                                            |  34%
  |                                                                        
  |=======================                                           |  35%
  |                                                                        
  |========================                                          |  36%
  |                                                                        
  |========================                                          |  37%
  |                                                                        
  |=========================                                         |  38%
  |                                                                        
  |==========================                                        |  39%
  |                                                                        
  |==========================                                        |  40%
  |                                                                        
  |===========================                                       |  41%
  |                                                                        
  |============================                                      |  42%
  |                                                                        
  |============================                                      |  43%
  |                                                                        
  |=============================                                     |  44%
  |                                                                        
  |==============================                                    |  45%
  |                                                                        
  |==============================                                    |  46%
  |                                                                        
  |===============================                                   |  47%
  |                                                                        
  |================================                                  |  48%
  |                                                                        
  |================================                                  |  49%
  |                                                                        
  |=================================                                 |  50%
  |                                                                        
  |==================================                                |  51%
  |                                                                        
  |==================================                                |  52%
  |                                                                        
  |===================================                               |  53%
  |                                                                        
  |====================================                              |  54%
  |                                                                        
  |====================================                              |  55%
  |                                                                        
  |=====================================                             |  56%
  |                                                                        
  |======================================                            |  57%
  |                                                                        
  |======================================                            |  58%
  |                                                                        
  |=======================================                           |  59%
  |                                                                        
  |========================================                          |  60%
  |                                                                        
  |========================================                          |  61%
  |                                                                        
  |=========================================                         |  62%
  |                                                                        
  |==========================================                        |  63%
  |                                                                        
  |==========================================                        |  64%
  |                                                                        
  |===========================================                       |  65%
  |                                                                        
  |============================================                      |  66%
  |                                                                        
  |============================================                      |  67%
  |                                                                        
  |=============================================                     |  68%
  |                                                                        
  |==============================================                    |  69%
  |                                                                        
  |==============================================                    |  70%
  |                                                                        
  |===============================================                   |  71%
  |                                                                        
  |================================================                  |  72%
  |                                                                        
  |================================================                  |  73%
  |                                                                        
  |=================================================                 |  74%
  |                                                                        
  |==================================================                |  75%
  |                                                                        
  |==================================================                |  76%
  |                                                                        
  |===================================================               |  77%
  |                                                                        
  |===================================================               |  78%
  |                                                                        
  |====================================================              |  79%
  |                                                                        
  |=====================================================             |  80%
  |                                                                        
  |=====================================================             |  81%
  |                                                                        
  |======================================================            |  82%
  |                                                                        
  |=======================================================           |  83%
  |                                                                        
  |=======================================================           |  84%
  |                                                                        
  |========================================================          |  85%
  |                                                                        
  |=========================================================         |  86%
  |                                                                        
  |=========================================================         |  87%
  |                                                                        
  |==========================================================        |  88%
  |                                                                        
  |===========================================================       |  89%
  |                                                                        
  |===========================================================       |  90%
  |                                                                        
  |============================================================      |  91%
  |                                                                        
  |=============================================================     |  92%
  |                                                                        
  |=============================================================     |  93%
  |                                                                        
  |==============================================================    |  94%
  |                                                                        
  |===============================================================   |  95%
  |                                                                        
  |===============================================================   |  96%
  |                                                                        
  |================================================================  |  97%
  |                                                                        
  |================================================================= |  98%
  |                                                                        
  |================================================================= |  99%
  |                                                                        
  |==================================================================| 100%
model3$docs %>%
  group_by(train_id) %>%
  summarize(erate = mean(century != pred_label))
## # A tibble: 2 x 2
##   train_id  erate
##   <chr>     <dbl>
## 1 train    0.0138
## 2 valid    0.163
dsst_coef(model3$model, lambda_num = 30)
## 41 x 22 sparse Matrix of class "dgCMatrix"
##                       1         2         3         4         5          6
## (Intercept)  0.09805803 0.1569244 0.3086228 0.2346831 0.1348742 0.07115465
## Meteorology  .          .         .         .         .         .         
## Anime        .          .         .         .         .         .         
## Sovereign    .          .         .         .         .         .         
## Jazz         .          .         .         .         .         .         
## Great        .          .         .         .         .         .         
## founde       .          .         .         .         .         .         
## Frankish     .          .         .         .         .         .         
## Justinian    .          .         .         .         .         0.74557071
## Mughal       .          .         .         .         .         .         
## Mongol       .          .         .         .         .         .         
## Charlemagne  .          .         .         .         .         .         
## Dutch        .          .         .         .         .         .         
## Archaeology  .          .         .         .         .         .         
## College      .          .         .         .         .         .         
## governors    .          .         .         .         .         .         
## localize     .          .         .         .         .         .         
## Martel       .          .         .         .         .         .         
## Vik          .          .         .         .         .         .         
## Pepin        .          .         .         .         .         .         
## Baronet      .          .         .         .         .         .         
## Gnaeus       0.91508337 .         .         .         .         .         
## probable     .          .         .         .         .         .         
## Muslim       .          .         .         .         .         .         
## Gaius        0.49209395 .         .         .         .         .         
## Constantius  .          .         .         0.3463139 .         .         
## Komnenos     .          .         .         .         .         .         
## entrant      .          .         .         .         .         .         
## Samanid      .          .         .         .         .         .         
## Umayyad      .          .         .         .         .         .         
## Architecture .          .         .         .         .         .         
## Cao          .          .         0.1133166 .         .         .         
## Vikings      .          .         .         .         .         .         
## atabeg       .          .         .         .         .         .         
## Aurelius     .          0.2222254 .         .         .         .         
## Heraclius    .          .         .         .         .         .         
## conquistador .          .         .         .         .         .         
## Seljuk       .          .         .         .         .         .         
## Birt         .          .         .         .         .         .         
## Wuyue        .          .         .         .         .         .         
## Almoravid    .          .         .         .         .         .         
##                      7         8          9         10        11         12
## (Intercept)  0.2237574 0.2796602 0.04111043 0.14756413 0.1128949 0.09384301
## Meteorology  .         .         .          .          .         .         
## Anime        .         .         .          .          .         .         
## Sovereign    .         .         .          .          .         .         
## Jazz         .         .         .          .          .         .         
## Great        .         .         .          .          .         .         
## founde       .         .         .          .          .         .         
## Frankish     .         .         0.21104294 .          .         .         
## Justinian    .         .         .          .          .         .         
## Mughal       .         .         .          .          .         .         
## Mongol       .         .         .          .          .         .         
## Charlemagne  .         0.3507789 .          .          .         .         
## Dutch        .         .         .          .          .         .         
## Archaeology  .         .         .          .          .         .         
## College      .         .         .          .          .         .         
## governors    .         .         .          .          .         .         
## localize     .         .         .          .          .         .         
## Martel       .         0.3693106 .          .          .         .         
## Vik          .         .         0.33516303 .          .         .         
## Pepin        .         0.3136063 .          .          .         .         
## Baronet      .         .         .          .          .         .         
## Gnaeus       .         .         .          .          .         .         
## probable     .         .         .          .          .         .         
## Muslim       .         .         0.16900289 .          .         .         
## Gaius        .         .         .          .          .         .         
## Constantius  .         .         .          .          .         .         
## Komnenos     .         .         .          .          .         0.34165469
## entrant      .         .         .          .          .         .         
## Samanid      .         .         .          0.90631364 .         .         
## Umayyad      .         0.2236102 .          .          .         .         
## Architecture .         .         .          .          .         .         
## Cao          .         .         .          .          .         .         
## Vikings      .         .         0.10538451 .          .         .         
## atabeg       .         .         .          .          .         0.52492885
## Aurelius     .         .         .          .          .         .         
## Heraclius    0.2004722 .         .          .          .         .         
## conquistador .         .         .          .          .         .         
## Seljuk       .         .         .          .          .         0.03359060
## Birt         .         .         .          .          .         .         
## Wuyue        .         .         .          0.04879843 .         .         
## Almoravid    .         .         .          .          .         0.03661660
##                       13        14        15          16          17
## (Intercept)  0.009809658 0.2380611 0.1868097 -0.01883894 -0.21115951
## Meteorology  .           .         .          .           .         
## Anime        .           .         .          .           .         
## Sovereign    .           .         .          .           .         
## Jazz         .           .         .          .           .         
## Great        .           .         .          .           .         
## founde       .           .         .          .           .         
## Frankish     .           .         .          .           .         
## Justinian    .           .         .          .           .         
## Mughal       .           .         .          .           0.37664644
## Mongol       0.312727676 .         .          .           .         
## Charlemagne  .           .         .          .           .         
## Dutch        .           .         .          .           0.08904120
## Archaeology  .           .         .          .           .         
## College      .           .         .          .           .         
## governors    .           .         .          1.02604329  .         
## localize     .           .         .          .           .         
## Martel       .           .         .          .           .         
## Vik          .           .         .          .           .         
## Pepin        .           .         .          .           .         
## Baronet      .           .         .          .           0.07810307
## Gnaeus       .           .         .          .           .         
## probable     .           .         0.4343657  .           .         
## Muslim       .           .         .          .           .         
## Gaius        .           .         .          .           .         
## Constantius  .           .         .          .           .         
## Komnenos     .           .         .          .           .         
## entrant      .           .         .          .           .         
## Samanid      .           .         .          .           .         
## Umayyad      .           .         .          .           .         
## Architecture .           .         0.3108818  .           .         
## Cao          .           .         .          .           .         
## Vikings      .           .         .          .           .         
## atabeg       .           .         .          .           .         
## Aurelius     .           .         .          .           .         
## Heraclius    .           .         .          .           .         
## conquistador .           .         .          0.14502932  .         
## Seljuk       .           .         .          .           .         
## Birt         .           .         .          .           .         
## Wuyue        .           .         .          .           .         
## Almoravid    .           .         .          .           .         
##                      18          19          20        21 MLN
## (Intercept)  -0.3894628 -0.08849446 -0.62744730 -1.002425   .
## Meteorology   .          .           1.74240903  .          2
## Anime         .          .           0.71275437  .          2
## Sovereign     .          .           0.42128780  .          7
## Jazz          .          .           0.13349940  .         14
## Great         0.2755476  .           .           .         16
## founde        .          0.13143510  .           .         17
## Frankish      .          .           .           .         18
## Justinian     .          .           .           .         19
## Mughal        .          .           .           .         19
## Mongol        .          .           .           .         19
## Charlemagne   .          .           .           .         20
## Dutch         .          .           .           .         20
## Archaeology   1.1926707  .           .           .         21
## College       .          0.16867425  .           .         21
## governors     .          .           .           .         22
## localize      .          0.78927282  .           .         22
## Martel        .          .           .           .         23
## Vik           .          .           .           .         23
## Pepin         .          .           .           .         23
## Baronet       .          .           .           .         23
## Gnaeus        .          .           .           .         24
## probable      .          .           .           .         24
## Muslim        .          .           .           .         24
## Gaius         .          .           .           .         25
## Constantius   .          .           .           .         25
## Komnenos      .          .           .           .         25
## entrant       .          .           .           2.172346  26
## Samanid       .          .           .           .         26
## Umayyad       .          .           .           .         26
## Architecture  .          .           .           .         27
## Cao           .          .           .           .         27
## Vikings       .          .           .           .         27
## atabeg        .          .           .           .         28
## Aurelius      .          .           .           .         28
## Heraclius     .          .           .           .         28
## conquistador  .          .           .           .         29
## Seljuk        .          .           .           .         29
## Birt          .          .           0.01486792  .         29
## Wuyue         .          .           .           .         30
## Almoravid     .          .           .           .         30
dsst_kwic(anno, terms = "anime")
## [doc1917] nban no Maki , first |anime| , is released in Jap
## [doc1941]   Rintaro , Japanese |anime| director January Nei
## [doc1961] iyuki Abe , Japanese |anime| director Maria Filat
## [doc1963] toshi Kon , Japanese |anime| director ( d. ) [ ] 
## [doc1965]  Watanabe , Japanese |anime| director Carlos Fran
## [doc1978] ohiko Ito , Japanese |anime| director Michael Joh
## [doc1997] due to an episode of |anime| Pokémon .           
## [doc2001] was Studio Ghibli 's |anime| Spirited Away ( Japa
dsst_kwic(anno, terms = "Anime")
## [doc1907]                      |Anime| Anime Archaeology Ar
## [doc1913]            Animation |Anime| Anime Archaeology Ar
## [doc1920]            Animation |Anime| Anime Archaeology Ar
## [doc1927]            Animation |Anime| Anime Archaeology Ar
## [doc1940]            Animation |Anime| Anime Archaeology Ar
## [doc1943]            Animation |Anime| Anime Archaeology Ar
## [doc1945]            Animation |Anime| Anime Archaeology Ar
## [doc1949]            Animation |Anime| Anime Archaeology Ar
## [doc1957]            Animation |Anime| Anime Archaeology Ar
## [doc1960]            Animation |Anime| Anime Archaeology Ar
## [doc1965]            Animation |Anime| Anime Archaeology Ar
## [doc1975]            Animation |Anime| Anime Archaeology Ar
## [doc1980]            Animation |Anime| Anime Archaeology Ar
## [doc1981]            Animation |Anime| Anime Archaeology Ar
## [doc1985]            Animation |Anime| Anime Archaeology Ar
## [doc1986]            Animation |Anime| Anime Archaeology Ar
## [doc1989]            Animation |Anime| Anime Archaeology Ar
## [doc1992]            Animation |Anime| Anime Archaeology Ar
## [doc1994]            Animation |Anime| Anime Archaeology Ar
## [doc1999]            Animation |Anime| Anime Archaeology Ar
dsst_kwic(anno, terms = "Animation")
## [doc1911]                      |Animation| Anime Anime Archaeol
## [doc1916] mator at Walt Disney |Animation| Studios ( d. ) Febru
## [doc1923]                      |Animation| Anime Anime Archaeol
## [doc1930]                      |Animation| Anime Anime Archaeol
## [doc1943]                      |Animation| Anime Anime Archaeol
## [doc1945] ident of Walt Disney |Animation| Studios Nana Ampadu 
## [doc1947]                      |Animation| Anime Anime Archaeol
## [doc1951]                      |Animation| Anime Anime Archaeol
## [doc1959]                      |Animation| Anime Anime Archaeol
## [doc1962]                      |Animation| Anime Anime Archaeol
## [doc1967]                      |Animation| Anime Anime Archaeol
## [doc1975]                      |Animation| Anime Anime Archaeol
## [doc1980]                      |Animation| Anime Anime Archaeol
## [doc1981]                      |Animation| Anime Anime Archaeol
## [doc1986]                      |Animation| Anime Anime Archaeol
## [doc1988]                      |Animation| Anime Anime Archaeol
## [doc1989]                      |Animation| Anime Anime Archaeol
## [doc1992]                      |Animation| Anime Anime Archaeol
## [doc1994]                      |Animation| Anime Anime Archaeol
## [doc2000]                      |Animation| Anime Anime Archaeol
dsst_kwic(anno, terms = "College")
## [doc1496]                Jesus |College| , Cambridge , is fou
## [doc1511]           St John 's |College| , Cambridge , Englan
## [doc1669]           The Orange |College| of Breda is wound up
## [doc1692] , Master of Pembroke |College| , Cambridge ( d. )  
## [doc1694] rican rector of Yale |College| ( d. ) August – Henr
## [doc1752] resident of Queen 's |College| ) ( d. )            
## [doc1765] ler , rector of Yale |College| ( b. ) August – Fran
## [doc1794] shington & Jefferson |College| ) is chartered by Pe
## [doc1830] ] January – LaGrange |College| ( later University o
## [doc1832]  ] November – Wabash |College| , a small , private 
## [doc1844] y is founded at Yale |College| in United States .  
## [doc1856] aryland Agricultural |College| ( modern - day Unive
## [doc1865]           Washington |College| and Jefferson Colleg
## [doc1889] for creation of Elon |College| .                   
## [doc1893] ts enter St Hilda 's |College| , Oxford , England ,
## [doc1899] i is founded at City |College| of New York , by Cha
## [doc1921]               Centre |College| 's American football
## [doc1921]               Centre |College| 's American football
## [doc1955] esident of Dartmouth |College| April – Kevin Brady 
## [doc1967]              Mazenod |College| , Victoria , opens i
dsst_kwic(anno, terms = "Meteorology")   
## [doc1901] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1907] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1914] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1921] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1934] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1937] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1939] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1943] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1951] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1954] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1959] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1968] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1973] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1975] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1980] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1983] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1986] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1988] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1993] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1997] rature Poetry Poetry |Meteorology| Music Country Heavy
dsst_kwic(anno, terms = "Great") 
## [doc0359]       King Shapur II |Great| of Persian Empire in
## [doc0866]                  The |Great| Heathen Army of Viki
## [doc1126] . ) Michael Syrian ( |Great| ) , Syriac patriarch
## [doc1211] r , is spread across |Great| Wall , and garrisone
## [doc1277] ay – Stefan Uroš I ( |Great| ) , king of Serbia M
## [doc1282] August – Peter III ( |Great| ) traveling with his
## [doc1587]   Shah ‘ Abbas I The |Great| succeeds as Shahansh
## [doc1705] r Warsaw , Poland in |Great| Northern War .      
## [doc1707] iament of Kingdom of |Great| Britain first meets 
## [doc1726] anada Denmark France |Great| Britain Ireland Norw
## [doc1748] anada Denmark France |Great| Britain Ireland Norw
## [doc1761] e Earl of Egremont , |Great| Britain 's Secretary
## [doc1777] in army of Frederick |Great| ( b. )              
## [doc1789] anada Denmark France |Great| Britain Ireland Norw
## [doc1796] sion of Detroit from |Great| Britain , under term
## [doc1797] anada Denmark France |Great| Britain Ireland Norw
## [doc1857] chanical engineer of |Great| Western Railway ( d 
## [doc1858] ondon as a result of |Great| Stink , when heat of
## [doc1901]                      |Great| Britain can not win 
## [doc1933]      In reference to |Great| Depression , he proc
dsst_kwic(anno, terms = "Mongol") 
## [doc1215] mber – Kublai Khan , |Mongol | emperor ( d. ) Agnes
## [doc1223]                  The |Mongol | army led by Muqali (
## [doc1223] ses under continuous |Mongol | attacks. [ ] June – 
## [doc1232] s fate of falling to |Mongol | Empire .            
## [doc1237]                  The |Mongol | army commanded by Ba
## [doc1251] 251–52 – Eljigidei , |Mongol | commander of Persia 
## [doc1251]  as an ambassador to |Mongols| , meets king in Pale
## [doc1257] lain of Iraq , while |Mongol | forces under Hulagu 
## [doc1264] Protector of Law ) , |Mongol | prince ( d. ) Louis 
## [doc1266] f Marco Polo , reach |Mongol | capital Khanbaliq ( 
## [doc1283]                      |Mongol | forces besiege fortr
## [doc1285] rwada Buyantu Khan , |Mongol | emperor ( d. ) May –
## [doc1287]                      |Mongol | ruler of Ilkhanate ,
## [doc1298]          Some 20,000 |Mongols| are killed in ensuin
## [doc1299] i are interrupted by |Mongols| .                   
## [doc1305]                 Many |Mongols| are taken prisoner a
## [doc1307] n ( or Chengzong ) , |Mongol | emperor [ ]         
## [doc1307]          Duwa Khan , |Mongol | ruler of Chagatai Kh
## [doc1346]              Several |Mongol | towns in Crimea are 
## [doc1346] sh nobles opposed to |Mongol | rule .
dsst_kwic(anno, terms = "Muslim", n = 200)
## [doc0573]           Abu Bakr , |Muslim| Caliph ( approximate
## [doc0635] Gaza is conquered by |Muslim| Arabs under ' Amr ib
## [doc0636] long Yarmouk River , |Muslim| forces ( 25,000 men 
## [doc0637]    Siege of Aleppo : |Muslim| Arabs under Khalid i
## [doc0641] iege of Alexandria : |Muslim| Arabs under ' Amr ib
## [doc0641] ch of Mesopotamia to |Muslim| Arabs .             
## [doc0644] n of Umar I Umar I , |Muslim| caliph ( r. 634–644 
## [doc0646] - Malik ibn Marwan , |Muslim| Caliph ( d. ) Gudula
## [doc0646] ria is recaptured by |Muslim| Arabs , after a Byza
## [doc0656] – Uthman ibn Affan , |Muslim| Caliph ( b.         
## [doc0662] - Akbar ibn Husayn , |Muslim| martyr ( b. ) Kakino
## [doc0665] ) Sa'id ibn Jubayr , |Muslim| scholar ( d. ) April
## [doc0669]                  The |Muslim| - Arabs are decimate
## [doc0670]  ) Tariq ibn Ziyad , |Muslim| general ( d. ) Tatwi
## [doc0672]  ibn al - Muhallab , |Muslim| governor ( d. ) Janu
## [doc0674]                  The |Muslim| -Arabs raid Crete , 
## [doc0674] ibn Abd al - Malik , |Muslim| caliph ( approximate
## [doc0676] s his son Yazid with |Muslim| reinforcements to Co
## [doc0683] November – Yazid I , |Muslim| caliph ( b. )       
## [doc0687] te date ) Yazid II , |Muslim| caliph ( d. ) March 
## [doc0688]  Aswad al - Du'ali , |Muslim| scholar ( or )      
## [doc0692] s , and goes over to |Muslim| Arabs .             
## [doc0700] te ) Wasil ibn Ata , |Muslim| ( d. ) Willibald , b
## [doc0706]      Al - Walid II , |Muslim| caliph ( d. ) Eoppa 
## [doc0708]  - Allah ibn Ibadh , |Muslim| jurist and imam Drog
## [doc0709] fforts , Qutayba ibn |Muslim| captures Bukhara ( U
## [doc0712]   Abdallah ibn Ali , |Muslim| general ( approximat
## [doc0716] Sufyan al - Thawri , |Muslim| scholar and jurist (
## [doc0717] ibn Abd al - Malik , |Muslim| caliph ( b. )       
## [doc0719] f Gaul ( first major |Muslim| attack upon Visigoth
## [doc0720] onne capital city of |Muslim| Septimania ( Souther
## [doc0720]  ibn al - Muhallab , |Muslim| governor ( b. )     
## [doc0721]  Abbas al - Saffah , |Muslim| caliph ( approximate
## [doc0721] alik al - Khawlani , |Muslim| general ( approximat
## [doc0726]  Suhaym al - Kalbi , |Muslim| governor Marcello Te
## [doc0732]            A Umayyad |Muslim| army ( 40,000 men ) 
## [doc0740]          About 6,800 |Muslim| Arabs , however , re
## [doc0744] tember – Yazid III , |Muslim| caliph ( b. )       
## [doc0744] il – Al - Walid II , |Muslim| caliph ( b. )       
## [doc0744]  Mansur al - Mahdi , |Muslim| caliph ( or )       
## [doc0745]  Mansur al - Mahdi , |Muslim| caliph ( or )       
## [doc0746]  of discontent among |Muslim| Arabs , Emperor Cons
## [doc0747] sid Revolution : Abu |Muslim| Khorasani , Persian 
## [doc0748]        Al - Waqidi , |Muslim| historian and biogra
## [doc0748] of land taxation for |Muslim| Arabs .             
## [doc0752] ica ) , dispatches a |Muslim| army and reconquers 
## [doc0754]  Abbas al - Saffah , |Muslim| caliph August – Carl
## [doc0756]  Ibn al - Muqaffa' , |Muslim| writer and , is tort
## [doc0756] e date ) Abu Nuwas , |Muslim| poet ( d. ) Fujiwara
## [doc0757]   April – Hisham I , |Muslim| emir ( d. ) Gisela ,
## [doc0759] sad ibn al - Furat , |Muslim| jurist and ( d. ) Gr
## [doc0763]  Harun al - Rashid , |Muslim| caliph ( or )       
## [doc0764]   Abdallah ibn Ali , |Muslim| general Bregowine , 
## [doc0765] a , Shi‘ ah Imam and |Muslim| scholar ( d. ) Fastr
## [doc0766] 'ath al - Khuza 'i , |Muslim| governor            
## [doc0766]  Harun al - Rashid , |Muslim| caliph ( or )       
## [doc0767] ntinople Ibn Ishaq , |Muslim| historian and hagiog
## [doc0774] ahman al - Awza 'i , |Muslim| scholar ( b. )      
## [doc0774]        Abu Mikhnaf , |Muslim| historian ( approxim
## [doc0775]  against Bulgars and |Muslim| Arabs .             
## [doc0776] Humayd ibn Qahtaba , |Muslim| military leader Nuad
## [doc0776]   Sahnun ibn Sa'id , |Muslim| jurist ( or )       
## [doc0777]  Ishaq ibn Rahwayh , |Muslim| imam ( or ) [ ]     
## [doc0784] abbot Isa ibn Musa , |Muslim| governor ( or ) Paul
## [doc0786] tember – Al - Hadi , |Muslim| caliph ( b. ) Septem
## [doc0786] bn Yusuf ibn Ma<U+1E6D>ar , |Muslim| mathematician ( d. )
## [doc0787] ' shar al - Balkhi , |Muslim| scholar and astrolog
## [doc0788]  Abd al - Rahman I , |Muslim| emir of Córdoba ( b.
## [doc0790] n Musa al - Qasawi , |Muslim| military leader ( d.
## [doc0792] Abd al - Rahman II , |Muslim| emir of Córdoba ( d.
## [doc0796]      Al - Mu'tasim , |Muslim| caliph ( d. ) Dhul -
## [doc0800]  Said al - Jawhari , |Muslim| mathematician Álvaro
## [doc0808] Yahya al - Barmaki , |Muslim| governor ( b. )     
## [doc0812]  Denmark Ibrahim I , |Muslim| emir of Aghlabids ( 
## [doc0813] Muhammad at - Taqi , |Muslim| ninth Isma'ili imam 
## [doc0814] - Allah ibn Numayr , |Muslim| narrator of hadith A
## [doc0819] ham ibn al - Kalbi , |Muslim| historian ( b. ) Liu
## [doc0821] Pious Ibn Abi Asim , |Muslim| Sunni scholar ( or )
## [doc0822]    Al - Mutawakkil , |Muslim| caliph ( d. ) Ibn Ab
## [doc0826] ) Thabit ibn Qurra , |Muslim| astronomer and physi
## [doc0826] d. ) Al - Mubarrad , |Muslim| grammarian ( d. )   
## [doc0827]  , and sends an Arab |Muslim| expeditionary force 
## [doc0828] le Talha ibn Tahir , |Muslim| governor            
## [doc0829] al - Razi Muhammad , |Muslim| governor Cináed mac 
## [doc0829] sty ( d. ) Yahya I , |Muslim| sultan ( d . ) June 
## [doc0830]   Ishaq ibn Hunayn , |Muslim| physician ( approxim
## [doc0831]             Summer – |Muslim| Arabs under Caliph A
## [doc0831]                      |Muslim| Arabs reinvade Sicil
## [doc0834] asr ibn ' Abdallah , |Muslim| governor Odo I , Fra
## [doc0835]    Ahmad ibn Tulun , |Muslim| governor ( d. ) Ahma
## [doc0838] allah ibn Abdallah , |Muslim| governor ( approxima
## [doc0840] almawaih ibn Bunan , |Muslim| physician Wen Zong ,
## [doc0840] - Hassan al - Nuri , |Muslim| Sufi ( approximate d
## [doc0842]       Al - Mundhir , |Muslim| emir ( approximate d
## [doc0844] Abdallah ibn Tahir , |Muslim| governor ( or )     
## [doc0844] Abu Ja'far Ashinas , |Muslim| general Alberik II ,
## [doc0845] Abdallah ibn Tahir , |Muslim| governor ( or )     
## [doc0845]         Abu Tammam , |Muslim| poet ( b. ) Bridei V
## [doc0846] ity is recaptured by |Muslim| Arabs .             
## [doc0847] ansur al - Rafi 'i , |Muslim| governor Muhammad ib
## [doc0850] u Zayd al - Balkhi , |Muslim| mathematician ( d. )
## [doc0851] uleiman al - Tajir , |Muslim| merchant and travell
## [doc0853]  Jafar al - Tahawi , |Muslim| scholar ( d. ) Abu M
## [doc0853]  Ishaq ibn Rahwayh , |Muslim| imam ( or ) Konstant
## [doc0854] n ( d. ) Abu Thawr , |Muslim| scholar ( b. )      
## [doc0856]     Ilyas ibn Asad , |Muslim| emir ( approximate d
## [doc0857]   Yahya ibn Aktham , |Muslim| jurist Zheng Lang , 
## [doc0858]       Al - Battani , |Muslim| astronomer and mathe
## [doc0861] h ibn al - Mu'tazz , |Muslim| poet ( d. ) Abu Bakr
## [doc0862] Tahir ibn Abdallah , |Muslim| governor            
## [doc0862] bria Al - Muntasir , |Muslim| caliph ( b. )       
## [doc0862] n Musa al - Qasawi , |Muslim| military leader ( b.
## [doc0863]  Yahya al - Armani , |Muslim| governor Bivin of Go
## [doc0863] – Abu Musa Utamish , |Muslim| vizier October – Tur
## [doc0864] tia Yahya ibn Umar , |Muslim| imam ( or )         
## [doc0865] sty Yahya ibn Umar , |Muslim| imam ( or )         
## [doc0868]  Dawud al - Zahiri , |Muslim| ( d. ) Théodrate of 
## [doc0869] sra'il al - Anbari , |Muslim| vizier September – W
## [doc0869] uhammad al - Mahdi , |Muslim| Twelver Shi‘ ah Imam
## [doc0869] Anglia Al - Darimi , |Muslim| scholar and imam Al 
## [doc0871] n ' Abd al - Hakam , |Muslim| historian ( b. )    
## [doc0871] n Mu'adh al - Razi , |Muslim| Sufi ( b. )         
## [doc0872]  qub al - Juzajani , |Muslim| hadith scholar Ivar 
## [doc0872] ( d. ) Al - Farabi , |Muslim| philosopher ( approx
## [doc0876] and Amalfi ) against |Muslim| raids .             
## [doc0882] sh ibn Khumarawayh , |Muslim| emir ( approximate d
## [doc0883]  Dawud al - Zahiri , |Muslim| scholar ( or )      
## [doc0884]  Dawud al - Zahiri , |Muslim| scholar ( or )      
## [doc0885] l ( d. ) Ibn Muqla , |Muslim| official and vizier 
## [doc0886] ' shar al - Balkhi , |Muslim| scholar and astrolog
## [doc0886]         Ibn Muqlah , |Muslim| official and vizier 
## [doc0886] Dynasty Muhammad I , |Muslim| emir of Córdoba ( b.
## [doc0889]  date ) Ibn Marwan , |Muslim| Sufi leader ( approx
## [doc0890] bu Hatim al - Razi , |Muslim| hadith scholar ( b. 
## [doc0892] mate date ) Nasr I , |Muslim| emir of Samanid Empi
## [doc0892] er – Al - Mu'tamid , |Muslim| caliph of Abbasid Ca
## [doc0894] uhammad al - Ta 'i , |Muslim| governor December – 
## [doc0896]        Al - Masudi , |Muslim| historian and geogra
## [doc0896] sh ibn Khumarawayh , |Muslim| emir Abu Hanifa Dina
## [doc0896] or ) Ibn al - Rumi , |Muslim| poet ( b. ) Klonimir
## [doc0900]       Ibn Abi Asim , |Muslim| Sunni scholar ( b. )
## [doc0909]  Dawud al - Zahiri , |Muslim| ( b. ) Sochlachan ma
## [doc0911] n Ibn al - Rawandi , |Muslim| scholar and writer (
## [doc0912] ny Ahmad ibn Yusuf , |Muslim| mathematician ( b. )
## [doc0923]  Shaykh al - Saduq , |Muslim| scholar ( approximat
## [doc0931] f York Ibn Masarra , |Muslim| ascetic and scholar 
## [doc0941]  Abu Bakr Muhammad , |Muslim| governor Fujiwara no
## [doc0945] l - Muqaddasi , Arab |Muslim| geographer ( approxi
## [doc0949]  show of strength of |Muslim| State in Al - Andalu
## [doc0950] date ) Al - Farabi , |Muslim| philosopher ( or )  
## [doc0956] Ahmad al - Muhajir , |Muslim| scholar and imam ( b
## [doc0971] Anemas , Byzantine ( |Muslim| ) army commander Att
## [doc0978]  date ) Ibn Hawqal , |Muslim| writer , geographer 
## [doc0979] ' Imran ibn Shahin , |Muslim| ruler Vitale Candian
## [doc1001]   Mahmud of Ghazni , |Muslim| leader of Ghazni , b
## [doc1002] atib al - Baghdadi , |Muslim| scholar ( d. )      
## [doc1010]            Allied to |Muslim| rebels , Ramon Borre
## [doc1020] l - Mu'ayyad Ahmad , |Muslim| imam ( b. )         
## [doc1025] - Jabbar ibn Ahmad , |Muslim| ( b. )              
## [doc1033] op Abu Talib Yahya , |Muslim| imam ( Zaidiyyah sec
## [doc1034] ng from weakening of |Muslim| central authority , 
## [doc1057] tian lords allied to |Muslim| Taifa of Silves . [ 
## [doc1119] armada ) by combined |Muslim| forces ( 20,000 men 
## [doc1145] al - Mu'min defeat a |Muslim| Almoravid army at Tl
## [doc1158] ledo ) from incoming |Muslim| raiders .           
## [doc1182]  by surprise to sink |Muslim| ships he is spotted 
## [doc1187] illon attack a large |Muslim| caravan , including 
## [doc1191] kes almost immune to |Muslim| missile attacks. [ ]
## [doc1203]  , sultan of Egypt , |Muslim| ships attack Crusade
## [doc1229] directly confronting |Muslim| army .              
## [doc1237] de Montpeller defeat |Muslim| army ( some 12,000 m
## [doc1244] e on distribution of |Muslim| lands yet to be conq
## [doc1247]              Many of |Muslim| ships are driven ash
## [doc1339]  Kashmir , beginning |Muslim| Shah Mir Dynasty .  
## [doc1345] uring rule in famous |Muslim| traveller Ibn Battut
## [doc1345]  of local area was a |Muslim| , and people worship
## [doc1346] ains , as well as by |Muslim| expansion .         
## [doc1346]  by Shah Mir , first |Muslim| to rule area. [ ] [ 
## [doc1347]  Bahmani Kingdom , a |Muslim| Sultanate in Deccan 
## [doc1693]  - Hurr al - Amili , |Muslim| cleric and scholar (
## [doc1800] ro by Syrian Kurdish |Muslim| student Suleiman al 
## [doc1841] keem Noor -ud -Din , |Muslim| scholar , Caliph of 
## [doc1867]  Serer people defeat |Muslim| Marabouts of Senegam
## [doc1889]  Caliph of Ahmadiyya |Muslim| Community in Islam (
## [doc1905] egion of Bengal into |Muslim| and Hindu territorie
## [doc1906] ber – The All -India |Muslim| League is founded as
## [doc1922] zur Rahman , Bengali |Muslim| and teacher ( b. ) [
## [doc1928] ght. [ ] March – The |Muslim| Brotherhood is found
## [doc1931] laysian politician , |Muslim| cleric ( d. ) Januar
## [doc1938]  Caliph of Ahmadiyya |Muslim| Community .         
## [doc1948]         December – A |Muslim| Brotherhood member a
## [doc1949]  Egyptian founder of |Muslim| Brotherhood ( b. ) (
## [doc1966]          The Chadian |Muslim| insurgent group FROL
## [doc1967] ( alongside Pakistan |Muslim| League ) is broken i
## [doc1967] kir Hussain is first |Muslim| to become president 
## [doc1967] kir Hussain is first |Muslim| to become president 
## [doc1975] ti Menk , Zimbabwean |Muslim| cleric and Mufti Tob
## [doc1979] ebruary – In Kabul , |Muslim| extremists kidnap Am
## [doc1989] est : Uyghur and Hui |Muslim| protesters riot in f
## [doc2001] etween Christian and |Muslim| rioters begin in Jos
dsst_kwic(anno, terms = "conquistador")
## [doc1460] e Bastidas , Spanish |conquistador | ( d. )              
## [doc1475]  de Balboa , Spanish |conquistador | ( approximate date ;
## [doc1485] nán Cortés , Spanish |conquistador | ( d. ) Odet de Foix 
## [doc1485] nán Cortés , Spanish |conquistador | ( d. )              
## [doc1495] e Alvarado , Spanish |conquistador | ( d .               
## [doc1495] e Alvarado , Spanish |conquistador | ( d. ) Marie Dentièr
## [doc1509] de Quesada , Spanish |conquistador | ( d. ) [ ]          
## [doc1520] ts in death of about |conquistadors| , and some 2,000 of 
## [doc1521] ce de León , Spanish |conquistador | ( b. ) August – Josq
## [doc1523] tín Cortés , Spanish |conquistador | ( d . ) Francisco Fo
## [doc1524]      March – Spanish |conquistador | Pedro de Alvarado de
## [doc1525] s founded by Spanish |conquistador | Rodrigo de Bastidas 
## [doc1526]              Spanish |conquistadors| led by Francisco Piz
## [doc1534] sh settlers , led by |conquistador | Sebastián de Belalcá
## [doc1538] de Almagro , Spanish |conquistador | ( b. )              
## [doc1541] co Pizarro , Spanish |conquistador | ( b. c. ) [ ]       
## [doc1553] utaro defeat Spanish |conquistadors| , and execute Pedro 
## [doc1561] e , Basque rebel and |conquistador | ( b. )              
## [doc1570]              Spanish |conquistador | Juan de Salcedo ( in
## [doc1621] s founded by Spanish |conquistadors| , as San Jose de Gua
dsst_kwic(anno, terms = "Vik")
## [doc0789]                      |Viking| attacks increase in 
## [doc0829]                      |Viking| chieftain Halfdan Bl
## [doc0835]               Danish |Viking| raiders ally with Co
## [doc0843]                      |Viking| raiders attack Nante
## [doc0845]                      |Viking| forces destroy Hambu
## [doc0845] k ( b. ) Turgesius , |Viking| chieftain ( approxim
## [doc0848] pite destroying some |Viking| longships on Dordogn
## [doc0854]                      |Viking| chieftain Ubba winte
## [doc0865]                      |Viking| king Ragnar Lodbrok 
## [doc0871]                      |Viking| king April – Æthelre
## [doc0876]                      |Viking| leader Halfdan Ragna
## [doc0879]                      |Viking| leader Guthrum becom
## [doc0883]                      |Viking| raiders ravage Fland
## [doc0892]           Autumn – A |Viking| force with a fleet o
## [doc0914]                      |Viking| raiders establish a 
## [doc0939] rêt : Bretons defeat |Viking| occupiers .         
## [doc0970]                      |Viking| chieftain Erenfried 
## [doc0978] e ) Geirmund Noisy , |Viking| adventurer ( approxi
## [doc0984]                      |Viking| noblewoman Shi Shoux
## [doc1775] r for Revolution ' ( |Viking| , .
dsst_kwic(anno, terms = "entrant")
## [doc1895]                 Five |entrants| start event ; only c
## [doc2004]  is won by Ukrainian |entrant | Ruslana with song Wi
## [doc2005]  and is won by Greek |entrant | Helena Paparizou wit
## [doc2006]  won by Finnish band |entrant | Lordi with song Hard
## [doc2007] nd is won by Serbian |entrant | Marija Šerifovic wit
## [doc2008] nd is won by Russian |entrant | Dima Bilan with song
## [doc2009]  is won by Norwegian |entrant | Alexander Rybak with
## [doc2010] and is won by German |entrant | Lena with song Satel
## [doc2011]  and is won by Azeri |entrants| Ell & Nikki with son
## [doc2012] nd is won by Swedish |entrant | Loreen with song Eup
## [doc2013] and is won by Danish |entrant | Emmelie de Forest wi
## [doc2014] d is won by Austrian |entrant | Conchita Wurst with 
## [doc2015] nd is won by Swedish |entrant | Måns Zelmerlöw with 
## [doc2016]  is won by Ukrainian |entrant | Jamala with song .  
## [doc2017] is won by Portuguese |entrant | Salvador Sobral with
## [doc2018] nd is won by Israeli |entrant | Netta Barzilai with 
## [doc2019]  and is won by Dutch |entrant | Duncan Laurence with
## [doc2021] st is won by Italian |entrants| Måneskin with song Z
dsst_kwic(anno, terms = "probable")
## [doc0901] ople . [ ] Biagota , |probable| wife of duke Bolesla
## [doc1207]  , French and mystic |probable| Bona of Pisa , Itali
## [doc1235] omans ( d. ) [ ] [ ] |probable| Pope Boniface VIII (
## [doc1260] d scholar ( b. ) [ ] |probable| –                   
## [doc1309]  [ citation needed ] |probable| –                   
## [doc1368] of France ( d. ) [ ] |probable| Louis VII , Duke of 
## [doc1384] r , King of Connacht |probable| –                   
## [doc1400] ourtier ( d. after ) |probable| Marina Nani , Veneti
## [doc1405] tional hero ( d. ) ( |probable| date ) October – Pop
## [doc1428] ribe and illuminator |probable| –                   
## [doc1433] l scholar ( d. ) [ ] |probable| –                   
## [doc1447] tholic mystic ( d. ) |probable| Giovanni Antonio Ama
## [doc1460] lish nobleman ( d. ) |probable| Antoine Brumel , Fle
## [doc1496] ian artist ( b. c. ) |probable| –                   
## [doc1497] zzo ( b. 1420/1430 ) |probable| –                   
## [doc1520] athematician ( d . ) |probable| Hans Eworth , Flemis
## [doc1550] , Irish rebel ( d. ) |probable| Robert Balfour , Sco
## [doc1556]  Turkish poet ( b. ) |probable| Brian mac Cathaoir O
## [doc1760] liote heroine ( d. ) |probable| date – Lemuel Franci
## [doc1868]  film actress ( d. ) |probable| –
dsst_kwic(anno, terms = "Sovereign")
## [doc1204] eanor of Aquitaine , |Sovereign| Duchess Regnant of A
## [doc1557] , first President of |Sovereign| Senate of Savoy ( d.
## [doc1778] o - Mels , leader of |Sovereign| Military Order of Ma
## [doc1905] ingdom United States |Sovereign| states Sovereign sta
## [doc1918] ingdom United States |Sovereign| states Sovereign sta
## [doc1921] ingdom United States |Sovereign| states Sovereign sta
## [doc1923] ingdom United States |Sovereign| states Sovereign sta
## [doc1927] ingdom United States |Sovereign| states Sovereign sta
## [doc1935] ingdom United States |Sovereign| states Sovereign sta
## [doc1938] ingdom United States |Sovereign| states Sovereign sta
## [doc1943] ingdom United States |Sovereign| states Sovereign sta
## [doc1951] ingdom United States |Sovereign| states Sovereign sta
## [doc1956] ingdom United States |Sovereign| states Sovereign sta
## [doc1957] ingdom United States |Sovereign| states Sovereign sta
## [doc1962] ingdom United States |Sovereign| states Sovereign sta
## [doc1965] ingdom United States |Sovereign| states Sovereign sta
## [doc1968] ingdom United States |Sovereign| states Sovereign sta
## [doc1970] ingdom United States |Sovereign| states Sovereign sta
## [doc1981] ited States Zimbabwe |Sovereign| states Sovereign sta
## [doc1989] ited States Zimbabwe |Sovereign| states Sovereign sta
dsst_kwic(anno, terms = "Architecture")
## [doc1478]                      |Architecture| Art Political entiti
## [doc1484]                      |Architecture| Art Political entiti
## [doc1528]                      |Architecture| Art Literature Music
## [doc1565]                      |Architecture| Art Literature Music
## [doc1585]                      |Architecture| Art Literature Music
## [doc1661]                      |Architecture| Art Literature Music
## [doc1668]                      |Architecture| Art Literature Music
## [doc1675]                      |Architecture| Art Literature Music
## [doc1697]                      |Architecture| Art Literature Music
## [doc1705]          Archaeology |Architecture| Art Literature Poetr
## [doc1722]          Archaeology |Architecture| Art Literature Poetr
## [doc1727]          Archaeology |Architecture| Art Literature Poetr
## [doc1728]          Archaeology |Architecture| Art Literature Poetr
## [doc1759]          Archaeology |Architecture| Art Literature Poetr
## [doc1914] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1934] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1962] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1967] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1978] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc2021] c Poetry Video games |Architecture| Aviation Radio Telev
dsst_kwic(anno, terms = "localize")
## [doc1620]  , which remained in |localized| use until .         
## [doc1662]  , which remained in |localized| use until .         
## [doc1668]  , which remained in |localized| use until .         
## [doc1672]  , which remained in |localized| use until .         
## [doc1688]  , which remained in |localized| use until .         
## [doc1712]  , which remained in |localized| use until .         
## [doc1748]  , which remained in |localized| use until .         
## [doc1750]  , which remained in |localized| use until .         
## [doc1770]  , which remained in |localized| use until .         
## [doc1796]  , which remained in |localized| use until .         
## [doc1800]  , which remained in |localized| use until .         
## [doc1844]  , which remained in |localized| use until .         
## [doc1851]  , which remained in |localized| use until .         
## [doc1858]  , which remained in |localized| use until .         
## [doc1871]  , which remained in |localized| use until .         
## [doc1880]  , which remained in |localized| use until .         
## [doc1888]  , which remained in |localized| use until .         
## [doc1905]  , which remained in |localized| use until .         
## [doc1910]  , which remained in |localized| use until .         
## [doc1911]  , which remained in |localized| use until .
dsst_kwic(anno, terms = "governors")
## [doc1525] ate leaders Colonial |governors| Religious leaders Wo
## [doc1530] ate leaders Colonial |governors| Religious leaders Wo
## [doc1567] ate leaders Colonial |governors| Religious leaders Wo
## [doc1573] ate leaders Colonial |governors| Religious leaders Wo
## [doc1577] ate leaders Colonial |governors| Religious leaders Wo
## [doc1593] ate leaders Colonial |governors| Religious leaders Wo
## [doc1599] ate leaders Colonial |governors| Religious leaders Wo
## [doc1617] ate leaders Colonial |governors| Religious leaders Wo
## [doc1653] ate leaders Colonial |governors| Religious leaders Wo
## [doc1655] ate leaders Colonial |governors| Religious leaders Wo
## [doc1674] ate leaders Colonial |governors| Religious leaders Wo
## [doc1700] ate leaders Colonial |governors| Religious leaders Wo
## [doc1704] ate leaders Colonial |governors| Religious leaders Bi
## [doc1749] ate leaders Colonial |governors| Religious leaders Bi
## [doc1753] he message instructs |governors| King George II has o
## [doc1760] ate leaders Colonial |governors| Religious leaders Bi
## [doc1772] ate leaders Colonial |governors| Religious leaders Bi
## [doc1773] ate leaders Colonial |governors| Religious leaders Bi
## [doc1782] ate leaders Colonial |governors| Religious leaders Bi
## [doc1789] ate leaders Colonial |governors| Religious leaders Bi
dsst_kwic(anno, terms = "Jazz")
## [doc1901] ry Meteorology Music |Jazz| Jazz Rail transport 
## [doc1907] ry Meteorology Music |Jazz| Jazz Rail transport 
## [doc1914] ry Meteorology Music |Jazz| Jazz Rail transport 
## [doc1920] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1931] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1934] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1936] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1940] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1947] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1950] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1954] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1962] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1967] ive debut at Windsor |Jazz| and Blues Festival .
## [doc1967] rology Music Country |Jazz| Country Jazz Rail tr
## [doc1972]  Country Heavy metal |Jazz| Latin Country Heavy 
## [doc1975]            January – |Jazz| pianist Keith Jarret
## [doc1978]  Country Heavy metal |Jazz| Latin Country Heavy 
## [doc1980]  Heavy metal Hip hop |Jazz| Latin Rail transport
## [doc1989]  Heavy metal Hip hop |Jazz| Latin Rail transport
## [doc1990]  Heavy metal Hip hop |Jazz| Latin Rail transport
model <- dsst_gbm_build(anno, docs, nrounds = 300, eta = 0.01, label = "decade")
## [1]  train-merror:0.926254   valid-merror:0.981113 
## [26] train-merror:0.745329   valid-merror:0.949304 
## [51] train-merror:0.556539   valid-merror:0.922465 
## [76] train-merror:0.389381   valid-merror:0.896620 
## [101]    train-merror:0.254671   valid-merror:0.866799 
## [126]    train-merror:0.171091   valid-merror:0.843936 
## [151]    train-merror:0.112094   valid-merror:0.829026 
## [176]    train-merror:0.076696   valid-merror:0.814115 
## [201]    train-merror:0.043265   valid-merror:0.810139 
## [226]    train-merror:0.028515   valid-merror:0.803181 
## [251]    train-merror:0.021632   valid-merror:0.788270 
## [276]    train-merror:0.013766   valid-merror:0.784294 
## [300]    train-merror:0.007866   valid-merror:0.775348
model <- dsst_gbm_build(anno, docs, nrounds = 2000, eta = 0.005, label = "decade")
## [1]  train-merror:0.926254   valid-merror:0.981113 
## [26] train-merror:0.828909   valid-merror:0.967197 
## [51] train-merror:0.744346   valid-merror:0.946322 
## [76] train-merror:0.631268   valid-merror:0.927435 
## [101]    train-merror:0.554572   valid-merror:0.918489 
## [126]    train-merror:0.466077   valid-merror:0.909543 
## [151]    train-merror:0.387414   valid-merror:0.899602 
## [176]    train-merror:0.320551   valid-merror:0.880716 
## [201]    train-merror:0.252704   valid-merror:0.868787 
## [226]    train-merror:0.206490   valid-merror:0.866799 
## [251]    train-merror:0.173058   valid-merror:0.849901 
## [276]    train-merror:0.144543   valid-merror:0.840954 
## [301]    train-merror:0.114061   valid-merror:0.828032 
## [326]    train-merror:0.094395   valid-merror:0.821074 
## [351]    train-merror:0.078663   valid-merror:0.821074 
## [376]    train-merror:0.058014   valid-merror:0.816103 
## [401]    train-merror:0.044248   valid-merror:0.812127 
## [426]    train-merror:0.033432   valid-merror:0.807157 
## [451]    train-merror:0.028515   valid-merror:0.801193 
## [476]    train-merror:0.025565   valid-merror:0.799205 
## [501]    train-merror:0.021632   valid-merror:0.789264 
## [526]    train-merror:0.017699   valid-merror:0.785288 
## [551]    train-merror:0.013766   valid-merror:0.783300 
## [576]    train-merror:0.008850   valid-merror:0.782306 
## [601]    train-merror:0.007866   valid-merror:0.774354 
## [626]    train-merror:0.007866   valid-merror:0.770378 
## [651]    train-merror:0.004916   valid-merror:0.771372 
## [676]    train-merror:0.004916   valid-merror:0.766402 
## [701]    train-merror:0.002950   valid-merror:0.767396 
## [726]    train-merror:0.001967   valid-merror:0.762425 
## [751]    train-merror:0.001967   valid-merror:0.761431 
## [776]    train-merror:0.001967   valid-merror:0.762425 
## [801]    train-merror:0.001967   valid-merror:0.760437 
## [826]    train-merror:0.001967   valid-merror:0.758449 
## [851]    train-merror:0.001967   valid-merror:0.754473 
## [876]    train-merror:0.001967   valid-merror:0.755467 
## [901]    train-merror:0.000983   valid-merror:0.754473 
## [926]    train-merror:0.000983   valid-merror:0.755467 
## [951]    train-merror:0.000983   valid-merror:0.754473 
## [976]    train-merror:0.000983   valid-merror:0.752485 
## [1001]   train-merror:0.000983   valid-merror:0.754473 
## [1026]   train-merror:0.000000   valid-merror:0.753479 
## [1051]   train-merror:0.000000   valid-merror:0.753479 
## [1076]   train-merror:0.000000   valid-merror:0.752485 
## [1101]   train-merror:0.000000   valid-merror:0.749503 
## [1126]   train-merror:0.000000   valid-merror:0.749503 
## [1151]   train-merror:0.000000   valid-merror:0.747515 
## [1176]   train-merror:0.000000   valid-merror:0.746521 
## [1201]   train-merror:0.000000   valid-merror:0.746521 
## [1226]   train-merror:0.000000   valid-merror:0.746521 
## [1251]   train-merror:0.000000   valid-merror:0.742545 
## [1276]   train-merror:0.000000   valid-merror:0.745527 
## [1301]   train-merror:0.000000   valid-merror:0.747515 
## [1326]   train-merror:0.000000   valid-merror:0.747515 
## [1351]   train-merror:0.000000   valid-merror:0.748509 
## [1376]   train-merror:0.000000   valid-merror:0.747515 
## [1401]   train-merror:0.000000   valid-merror:0.746521 
## [1426]   train-merror:0.000000   valid-merror:0.745527 
## [1451]   train-merror:0.000000   valid-merror:0.746521 
## [1476]   train-merror:0.000000   valid-merror:0.747515 
## [1501]   train-merror:0.000000   valid-merror:0.746521 
## [1526]   train-merror:0.000000   valid-merror:0.748509 
## [1551]   train-merror:0.000000   valid-merror:0.747515 
## [1576]   train-merror:0.000000   valid-merror:0.746521 
## [1601]   train-merror:0.000000   valid-merror:0.746521 
## [1626]   train-merror:0.000000   valid-merror:0.745527 
## [1651]   train-merror:0.000000   valid-merror:0.742545 
## [1676]   train-merror:0.000000   valid-merror:0.743539 
## [1701]   train-merror:0.000000   valid-merror:0.743539 
## [1726]   train-merror:0.000000   valid-merror:0.743539 
## [1751]   train-merror:0.000000   valid-merror:0.742545 
## [1776]   train-merror:0.000000   valid-merror:0.742545 
## [1801]   train-merror:0.000000   valid-merror:0.742545 
## [1826]   train-merror:0.000000   valid-merror:0.742545 
## [1851]   train-merror:0.000000   valid-merror:0.743539 
## [1876]   train-merror:0.000000   valid-merror:0.743539 
## [1901]   train-merror:0.000000   valid-merror:0.743539 
## [1926]   train-merror:0.000000   valid-merror:0.743539 
## [1951]   train-merror:0.000000   valid-merror:0.743539 
## [1976]   train-merror:0.000000   valid-merror:0.743539 
## [2000]   train-merror:0.000000   valid-merror:0.743539
dsst_gbm_imp(model$model)
## # A tibble: 2,445 x 4
##    feature        gain   cover frequency
##    <chr>         <dbl>   <dbl>     <dbl>
##  1 -           0.0174  0.0163    0.0173 
##  2 Charlemagne 0.0112  0.00744   0.00531
##  3 Frankish    0.0108  0.00743   0.00619
##  4 d           0.0107  0.00751   0.00659
##  5 leader      0.0103  0.00661   0.00464
##  6 Tang        0.0103  0.00746   0.00556
##  7 d.          0.00897 0.00883   0.00968
##  8 .           0.00817 0.00721   0.00798
##  9 [           0.00786 0.00811   0.00849
## 10 ,           0.00738 0.00605   0.00704
## # i 2,435 more rows
model2 <- dsst_gbm_build(anno, docs, nrounds = 300, eta = 0.01, label = "century")
## [1]  train-merror:0.146509   valid-merror:0.280318 
## [26] train-merror:0.110128   valid-merror:0.235586 
## [51] train-merror:0.092429   valid-merror:0.219682 
## [76] train-merror:0.068830   valid-merror:0.196819 
## [101]    train-merror:0.058014   valid-merror:0.174950 
## [126]    train-merror:0.048181   valid-merror:0.170974 
## [151]    train-merror:0.039331   valid-merror:0.168986 
## [176]    train-merror:0.029499   valid-merror:0.161034 
## [201]    train-merror:0.024582   valid-merror:0.156064 
## [226]    train-merror:0.021632   valid-merror:0.151093 
## [251]    train-merror:0.017699   valid-merror:0.150099 
## [276]    train-merror:0.013766   valid-merror:0.152087 
## [300]    train-merror:0.011799   valid-merror:0.147117
model2 <- dsst_gbm_build(anno, docs, nrounds = 1901, eta = 0.005, label = "century")
## [1]  train-merror:0.146509   valid-merror:0.280318 
## [26] train-merror:0.122911   valid-merror:0.257455 
## [51] train-merror:0.113078   valid-merror:0.233598 
## [76] train-merror:0.102262   valid-merror:0.226640 
## [101]    train-merror:0.093412   valid-merror:0.216700 
## [126]    train-merror:0.081613   valid-merror:0.206759 
## [151]    train-merror:0.070796   valid-merror:0.196819 
## [176]    train-merror:0.064897   valid-merror:0.182903 
## [201]    train-merror:0.058014   valid-merror:0.173956 
## [226]    train-merror:0.051131   valid-merror:0.171968 
## [251]    train-merror:0.048181   valid-merror:0.170974 
## [276]    train-merror:0.046214   valid-merror:0.167992 
## [301]    train-merror:0.038348   valid-merror:0.168986 
## [326]    train-merror:0.035398   valid-merror:0.165010 
## [351]    train-merror:0.029499   valid-merror:0.161034 
## [376]    train-merror:0.028515   valid-merror:0.158052 
## [401]    train-merror:0.025565   valid-merror:0.156064 
## [426]    train-merror:0.024582   valid-merror:0.156064 
## [451]    train-merror:0.021632   valid-merror:0.154076 
## [476]    train-merror:0.017699   valid-merror:0.154076 
## [501]    train-merror:0.017699   valid-merror:0.153082 
## [526]    train-merror:0.016716   valid-merror:0.152087 
## [551]    train-merror:0.014749   valid-merror:0.152087 
## [576]    train-merror:0.013766   valid-merror:0.151093 
## [601]    train-merror:0.011799   valid-merror:0.148111 
## [626]    train-merror:0.007866   valid-merror:0.146123 
## [651]    train-merror:0.007866   valid-merror:0.143141 
## [676]    train-merror:0.006883   valid-merror:0.141153 
## [701]    train-merror:0.004916   valid-merror:0.138171 
## [726]    train-merror:0.004916   valid-merror:0.137177 
## [751]    train-merror:0.004916   valid-merror:0.137177 
## [776]    train-merror:0.004916   valid-merror:0.136183 
## [801]    train-merror:0.003933   valid-merror:0.135189 
## [826]    train-merror:0.002950   valid-merror:0.133201 
## [851]    train-merror:0.000983   valid-merror:0.133201 
## [876]    train-merror:0.000983   valid-merror:0.131213 
## [901]    train-merror:0.000983   valid-merror:0.131213 
## [926]    train-merror:0.000983   valid-merror:0.131213 
## [951]    train-merror:0.000983   valid-merror:0.129225 
## [976]    train-merror:0.000983   valid-merror:0.128231 
## [1001]   train-merror:0.000000   valid-merror:0.129225 
## [1026]   train-merror:0.000000   valid-merror:0.130219 
## [1051]   train-merror:0.000000   valid-merror:0.129225 
## [1076]   train-merror:0.000000   valid-merror:0.128231 
## [1101]   train-merror:0.000000   valid-merror:0.129225 
## [1126]   train-merror:0.000000   valid-merror:0.129225 
## [1151]   train-merror:0.000000   valid-merror:0.125249 
## [1176]   train-merror:0.000000   valid-merror:0.123260 
## [1201]   train-merror:0.000000   valid-merror:0.123260 
## [1226]   train-merror:0.000000   valid-merror:0.121272 
## [1251]   train-merror:0.000000   valid-merror:0.121272 
## [1276]   train-merror:0.000000   valid-merror:0.121272 
## [1301]   train-merror:0.000000   valid-merror:0.122266 
## [1326]   train-merror:0.000000   valid-merror:0.122266 
## [1351]   train-merror:0.000000   valid-merror:0.121272 
## [1376]   train-merror:0.000000   valid-merror:0.121272 
## [1401]   train-merror:0.000000   valid-merror:0.121272 
## [1426]   train-merror:0.000000   valid-merror:0.121272 
## [1451]   train-merror:0.000000   valid-merror:0.121272 
## [1476]   train-merror:0.000000   valid-merror:0.121272 
## [1501]   train-merror:0.000000   valid-merror:0.121272 
## [1526]   train-merror:0.000000   valid-merror:0.121272 
## [1551]   train-merror:0.000000   valid-merror:0.120278 
## [1576]   train-merror:0.000000   valid-merror:0.120278 
## [1601]   train-merror:0.000000   valid-merror:0.120278 
## [1626]   train-merror:0.000000   valid-merror:0.119284 
## [1651]   train-merror:0.000000   valid-merror:0.120278 
## [1676]   train-merror:0.000000   valid-merror:0.120278 
## [1701]   train-merror:0.000000   valid-merror:0.118290 
## [1726]   train-merror:0.000000   valid-merror:0.118290 
## [1751]   train-merror:0.000000   valid-merror:0.118290 
## [1776]   train-merror:0.000000   valid-merror:0.118290 
## [1801]   train-merror:0.000000   valid-merror:0.118290 
## [1826]   train-merror:0.000000   valid-merror:0.117296 
## [1851]   train-merror:0.000000   valid-merror:0.119284 
## [1876]   train-merror:0.000000   valid-merror:0.118290 
## [1901]   train-merror:0.000000   valid-merror:0.118290
dsst_gbm_imp(model2$model)
## # A tibble: 1,550 x 4
##    feature        gain   cover frequency
##    <chr>         <dbl>   <dbl>     <dbl>
##  1 religious    0.0591 0.0379    0.0227 
##  2 Colonial     0.0417 0.0208    0.0152 
##  3 deaths       0.0368 0.0328    0.0204 
##  4 american     0.0359 0.0142    0.0113 
##  5 Poetry       0.0353 0.00829   0.00234
##  6 Frankish     0.0344 0.0165    0.00584
##  7 Architecture 0.0328 0.0145    0.00977
##  8 awards       0.0278 0.00284   0.00110
##  9 literature   0.0278 0.00814   0.00691
## 10 frequently   0.0269 0.0240    0.00894
## # i 1,540 more rows
anno %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "doc_id", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 5) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    theme_void()

anno %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "doc_id", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 5) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    geom_text_repel(aes(label = substr(doc_id,4,7)), size = 2, show.legend = FALSE) +
    theme_void()

docs_cluster <- anno %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "doc_id", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 5) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id), by = "doc_id") %>%
  inner_join(docs_cluster, by = "doc_id", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "year Roman condita calendar urbe Consulship frequently ab less emperor chinese prevalent naming denomination method medieval be period early or since Europe era Domini Anno"                
## [2] "d English de - Dutch noble Duke b. painter ( ) Earl of italian Johann England Jesuit spanish french Baronet Catholic Flemish Mughal Thomas cardinal"                                         
## [3] "nobleman of knight I ii he ruler III Mongol IV king Norman al Henry crusader queen Castile or Din noblewoman bishop archbishop King count Seljuk"                                            
## [4] "approximate he Frankish king date Tang ibn Byzantine al Dynasty Muslim of { . chancellor no I Abbasid emperor a duke year son Li reign"                                                      
## [5] "american actor actress United singer player President States british d. Minister Prime film canadian director Soviet bear , footballer football U.S. politician musician producer television"
years <- docs_cluster %>%
  group_by(cluster) %>%
  summarize(years = paste(substr(doc_id,4,7), collapse = "|"))
print(years$years)
## [1] "0001|0002|0003|0004|0005|0006|0007|0008|0009|0010|0011|0012|0013|0014|0015|0016|0017|0018|0019|0020|0021|0022|0023|0024|0025|0026|0027|0028|0029|0030|0031|0032|0033|0034|0035|0036|0037|0038|0039|0040|0041|0042|0043|0044|0045|0046|0047|0048|0049|0050|0051|0052|0053|0054|0055|0056|0057|0058|0059|0060|0061|0062|0063|0064|0065|0066|0067|0068|0069|0070|0071|0072|0073|0074|0075|0076|0077|0078|0079|0080|0081|0082|0083|0084|0085|0086|0087|0088|0089|0090|0091|0092|0093|0094|0095|0096|0097|0098|0099|0100|0101|0102|0103|0104|0105|0106|0107|0108|0109|0110|0111|0112|0113|0114|0115|0116|0117|0118|0119|0120|0121|0122|0123|0124|0125|0126|0127|0128|0129|0130|0131|0132|0133|0134|0135|0136|0137|0138|0139|0140|0141|0142|0143|0144|0145|0146|0147|0148|0149|0150|0151|0152|0153|0154|0155|0156|0157|0158|0159|0160|0161|0162|0163|0164|0165|0166|0167|0168|0169|0170|0171|0172|0173|0174|0175|0176|0177|0178|0179|0180|0181|0182|0183|0184|0185|0186|0187|0188|0189|0190|0191|0192|0193|0194|0195|0196|0197|0198|0199|0200|0201|0202|0203|0204|0205|0206|0207|0208|0209|0210|0211|0212|0213|0214|0215|0216|0217|0218|0219|0220|0221|0222|0223|0224|0225|0226|0227|0228|0229|0230|0231|0232|0233|0234|0235|0236|0237|0238|0239|0240|0241|0242|0243|0244|0245|0246|0247|0248|0249|0250|0251|0252|0253|0254|0255|0256|0257|0258|0259|0260|0261|0262|0263|0264|0265|0266|0267|0268|0269|0270|0271|0272|0273|0274|0275|0276|0277|0278|0279|0280|0281|0282|0283|0284|0285|0286|0287|0288|0289|0290|0291|0292|0293|0294|0295|0296|0297|0298|0299|0300|0301|0302|0303|0304|0305|0306|0307|0308|0309|0310|0311|0312|0313|0314|0315|0316|0317|0318|0319|0320|0321|0322|0323|0324|0325|0326|0327|0328|0329|0330|0331|0332|0333|0334|0335|0336|0337|0338|0339|0340|0341|0342|0343|0344|0345|0346|0347|0348|0349|0350|0351|0352|0353|0354|0355|0356|0357|0358|0359|0360|0361|0362|0363|0364|0365|0366|0367|0368|0369|0370|0371|0372|0373|0374|0375|0376|0377|0378|0379|0380|0381|0382|0383|0384|0385|0386|0387|0388|0389|0390|0391|0392|0393|0394|0395|0396|0397|0398|0399|0400|0401|0402|0403|0404|0405|0406|0407|0408|0409|0410|0411|0412|0413|0414|0415|0416|0417|0418|0419|0420|0421|0422|0423|0424|0425|0426|0427|0428|0429|0430|0431|0432|0433|0434|0435|0436|0437|0438|0439|0440|0441|0442|0443|0444|0445|0446|0447|0448|0449|0451|0452|0453|0454|0455|0456|0457|0458|0459|0460|0461|0462|0463|0464|0465|0466|0467|0468|0469|0470|0471|0472|0473|0474|0475|0476|0477|0478|0479|0480|0481|0482|0483|0484|0485|0486|0487|0488|0489|0490|0491|0492|0493|0494|0495|0496|0497|0498|0499|0501|0502|0503|0504|0505|0506|0507|0508|0509|0510|0511|0512|0513|0514|0515|0516|0517|0518|0519|0521|0522|0523|0524|0525|0526|0527|0528|0529|0531|0532|0533|0534|0535|0536|0537|0539|0540|0541|0542|0544|0546|0547|0549|0551|0553|0555|0556|0557|0559|0562|0563|0564|0567|0571|0574|0577|0586|0596|0599|0605|0608|0609|0648|0666|0671|0693|0696|0699|0728|0729|0736|1280|2003|2004|2005|2007|2010|2011|2015|2018|2021|2022|2023"
## [2] "1400|1430|1449|1450|1457|1459|1468|1470|1473|1474|1475|1478|1480|1485|1486|1487|1488|1489|1490|1492|1493|1494|1495|1496|1497|1498|1499|1500|1502|1503|1505|1507|1510|1511|1513|1514|1515|1516|1517|1518|1519|1520|1521|1522|1523|1524|1525|1526|1527|1528|1529|1530|1531|1532|1533|1534|1535|1536|1537|1538|1539|1540|1541|1542|1543|1544|1545|1546|1547|1548|1549|1550|1551|1552|1553|1554|1555|1556|1557|1558|1559|1560|1561|1562|1563|1564|1565|1566|1567|1568|1569|1570|1571|1572|1573|1574|1575|1576|1577|1578|1579|1580|1581|1582|1583|1584|1585|1586|1587|1588|1589|1590|1591|1592|1593|1594|1595|1596|1597|1598|1599|1600|1601|1602|1603|1604|1605|1606|1607|1608|1609|1610|1611|1612|1613|1614|1615|1616|1617|1618|1619|1620|1621|1622|1623|1624|1625|1626|1627|1628|1629|1630|1631|1632|1633|1634|1635|1636|1637|1638|1639|1640|1641|1642|1643|1644|1645|1646|1647|1648|1649|1650|1651|1652|1653|1654|1655|1656|1657|1658|1659|1660|1661|1662|1663|1664|1665|1666|1667|1668|1669|1670|1671|1672|1673|1674|1675|1676|1677|1678|1679|1680|1681|1682|1683|1684|1685|1686|1687|1688|1689|1690|1691|1692|1693|1694|1695|1696|1697|1698|1699|1700|1701|1702|1703|1704|1705|1706|1707|1708|1709|1710|1711|1712|1713|1714|1715|1716|1717|1718|1719|1720|1721|1722|1723|1724|1725|1727|1728|1729|1730|1731|1732|1734|1735|1736|1737|1739|1741|1743|1744|1747|1748|1749|1754|1756|1757|1758|1761|1763|1769|1771"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3] "0950|0955|0970|0972|0975|0980|0985|0988|0989|0990|0991|0992|0993|0994|0999|1002|1003|1004|1005|1006|1007|1008|1009|1010|1011|1012|1013|1014|1015|1016|1018|1019|1020|1022|1025|1027|1028|1029|1030|1031|1032|1033|1034|1035|1036|1037|1038|1039|1040|1041|1043|1046|1047|1048|1050|1051|1052|1053|1054|1055|1056|1057|1058|1059|1060|1061|1062|1064|1065|1066|1067|1068|1069|1070|1071|1072|1073|1074|1075|1076|1077|1078|1079|1080|1082|1083|1085|1086|1087|1088|1089|1090|1092|1093|1094|1095|1097|1100|1101|1102|1103|1104|1105|1106|1107|1108|1109|1110|1111|1112|1114|1115|1117|1118|1119|1120|1121|1122|1123|1124|1125|1126|1127|1128|1129|1130|1131|1132|1133|1134|1135|1136|1137|1138|1140|1141|1142|1143|1144|1147|1148|1149|1150|1151|1152|1153|1154|1155|1156|1157|1158|1159|1160|1161|1162|1164|1165|1166|1167|1168|1169|1170|1171|1172|1173|1174|1175|1176|1177|1178|1179|1180|1181|1182|1184|1185|1187|1188|1189|1190|1191|1193|1194|1195|1196|1197|1198|1199|1200|1201|1202|1203|1204|1205|1206|1207|1208|1209|1210|1211|1212|1213|1214|1215|1216|1217|1218|1219|1220|1221|1222|1224|1225|1226|1227|1228|1229|1230|1231|1232|1233|1234|1235|1236|1237|1238|1239|1240|1241|1242|1243|1244|1245|1246|1247|1248|1249|1250|1251|1252|1253|1254|1255|1256|1257|1258|1259|1260|1261|1262|1263|1264|1265|1266|1267|1269|1270|1271|1272|1273|1274|1275|1276|1277|1278|1279|1281|1282|1283|1284|1285|1286|1287|1288|1289|1290|1291|1292|1293|1294|1295|1296|1297|1298|1299|1300|1301|1302|1303|1304|1305|1306|1307|1308|1309|1310|1311|1312|1313|1314|1315|1316|1317|1318|1319|1320|1321|1322|1324|1325|1326|1327|1328|1329|1330|1331|1332|1333|1334|1335|1336|1337|1338|1339|1340|1341|1342|1343|1344|1347|1348|1349|1350|1351|1352|1353|1354|1355|1356|1357|1358|1359|1360|1361|1362|1363|1364|1365|1366|1367|1368|1369|1370|1371|1372|1373|1374|1375|1376|1377|1378|1379|1380|1381|1382|1383|1384|1385|1386|1387|1388|1389|1390|1391|1392|1393|1394|1395|1396|1397|1398|1399|1401|1402|1403|1404|1405|1406|1407|1408|1409|1410|1411|1412|1413|1414|1415|1416|1417|1418|1419|1420|1421|1422|1423|1424|1425|1426|1427|1428|1429|1431|1432|1433|1434|1435|1436|1437|1438|1439|1440|1441|1442|1443|1444|1445|1446|1447|1448|1451|1452|1453|1454|1455|1456|1458|1460|1461|1462|1463|1464|1465|1466|1467|1469|1471|1472|1476|1477|1479|1481|1482|1483|1484|1491|1501|1504|1506|1508|1509|1512"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4] "0450|0500|0520|0530|0538|0543|0545|0548|0550|0552|0554|0558|0560|0561|0565|0566|0568|0569|0570|0572|0573|0575|0576|0578|0579|0580|0581|0582|0583|0584|0585|0587|0588|0589|0590|0591|0592|0593|0594|0595|0597|0598|0600|0601|0602|0603|0604|0606|0607|0610|0611|0612|0613|0614|0615|0616|0617|0618|0619|0620|0621|0622|0623|0624|0625|0626|0627|0628|0629|0630|0631|0632|0633|0634|0635|0636|0637|0638|0639|0640|0641|0642|0643|0644|0645|0646|0647|0649|0650|0651|0652|0653|0654|0655|0656|0657|0658|0659|0660|0661|0662|0663|0664|0665|0667|0668|0669|0670|0672|0673|0674|0675|0676|0677|0678|0679|0680|0681|0682|0683|0684|0685|0686|0687|0688|0689|0690|0691|0692|0694|0695|0697|0698|0700|0701|0702|0703|0704|0705|0706|0707|0708|0709|0710|0711|0712|0713|0714|0715|0716|0717|0718|0719|0720|0721|0722|0723|0724|0725|0726|0727|0730|0731|0732|0733|0734|0735|0737|0738|0739|0740|0741|0742|0743|0744|0745|0746|0747|0748|0749|0750|0751|0752|0753|0754|0755|0756|0757|0758|0759|0760|0761|0762|0763|0764|0765|0766|0767|0768|0769|0770|0771|0772|0773|0774|0775|0776|0777|0778|0779|0780|0781|0782|0783|0784|0785|0786|0787|0788|0789|0790|0791|0792|0793|0794|0795|0796|0797|0798|0799|0800|0801|0802|0803|0804|0805|0806|0807|0808|0809|0810|0811|0812|0813|0814|0815|0816|0817|0818|0819|0820|0821|0822|0823|0824|0825|0826|0827|0828|0829|0830|0831|0832|0833|0834|0835|0836|0837|0838|0839|0840|0841|0842|0843|0844|0845|0846|0847|0848|0849|0850|0851|0852|0853|0854|0855|0856|0857|0858|0859|0860|0861|0862|0863|0864|0865|0866|0867|0868|0869|0870|0871|0872|0873|0874|0875|0876|0877|0878|0879|0880|0881|0882|0883|0884|0885|0886|0887|0888|0889|0890|0891|0892|0893|0894|0895|0896|0897|0898|0899|0900|0901|0902|0903|0904|0905|0906|0907|0908|0909|0910|0911|0912|0913|0914|0915|0916|0917|0918|0919|0920|0921|0922|0923|0924|0925|0926|0927|0928|0929|0930|0931|0932|0933|0934|0935|0936|0937|0938|0939|0940|0941|0942|0943|0944|0945|0946|0947|0948|0949|0951|0952|0953|0954|0956|0957|0958|0959|0960|0961|0962|0963|0964|0965|0966|0967|0968|0969|0971|0973|0974|0976|0977|0978|0979|0981|0982|0983|0984|0986|0987|0995|0996|0997|0998|1000|1001|1017|1021|1023|1024|1026|1042|1044|1045|1049|1063|1081|1084|1091|1096|1098|1099|1113|1116|1139|1145|1146|1163|1183|1186|1192|1223|1268|1323|1345|1346"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [5] "1726|1733|1738|1740|1742|1745|1746|1750|1751|1752|1753|1755|1759|1760|1762|1764|1765|1766|1767|1768|1770|1772|1773|1774|1775|1776|1777|1778|1779|1780|1781|1782|1783|1784|1785|1786|1787|1788|1789|1790|1791|1792|1793|1794|1795|1796|1797|1798|1799|1800|1801|1802|1803|1804|1805|1806|1807|1808|1809|1810|1811|1812|1813|1814|1815|1816|1817|1818|1819|1820|1821|1822|1823|1824|1825|1826|1827|1828|1829|1830|1831|1832|1833|1834|1835|1836|1837|1838|1839|1840|1841|1842|1843|1844|1845|1846|1847|1848|1849|1850|1851|1852|1853|1854|1855|1856|1857|1858|1859|1860|1861|1862|1863|1864|1865|1866|1867|1868|1869|1870|1871|1872|1873|1874|1875|1876|1877|1878|1879|1880|1881|1882|1883|1884|1885|1886|1887|1888|1889|1890|1891|1892|1893|1894|1895|1896|1897|1898|1899|1900|1901|1902|1903|1904|1905|1906|1907|1908|1909|1910|1911|1912|1913|1914|1915|1916|1917|1918|1919|1920|1921|1922|1923|1924|1925|1926|1927|1928|1929|1930|1931|1932|1933|1934|1935|1936|1937|1938|1939|1940|1941|1942|1943|1944|1945|1946|1947|1948|1949|1950|1951|1952|1953|1954|1955|1956|1957|1958|1959|1960|1961|1962|1963|1964|1965|1966|1967|1968|1969|1970|1971|1972|1973|1974|1975|1976|1977|1978|1979|1980|1981|1982|1983|1984|1985|1986|1987|1988|1989|1990|1991|1992|1993|1994|1995|1996|1997|1998|1999|2000|2001|2002|2006|2008|2009|2012|2013|2014|2016|2017|2019|2020"
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "doc_id", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 3) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    theme_void()

docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "doc_id", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 3) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id), by = "doc_id") %>%
  inner_join(docs_cluster, by = "doc_id", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "of nobleman ] [ knight to a Mongol he be ii I Covid by . in IV III crusader ruler Castile people Henry unknown England"                                                       
## [2] "approximate year date he king calendar emperor chinese naming prevalent denomination medieval method Roman . Dynasty Births deaths period Frankish early or condita Tang urbe"
## [3] "american d. actor , actress b. british politician singer player - ( ) bear director canadian film french german musician Nobel footballer Prize Minister United"
years <- docs_cluster %>%
  group_by(cluster) %>%
  summarize(years = paste(substr(doc_id,4,7), collapse = "|"))
print(years$years)
## [1] "0001|0033|0067|0070|0139|0376|0377|0533|0536|0553|0637|0699|0717|0727|0732|0743|0782|0789|0792|0801|0803|0804|0807|0811|0813|0817|0826|0828|0831|0832|0843|0849|0851|0853|0854|0856|0857|0859|0863|0871|0873|0876|0885|0897|0899|0901|0903|0907|0909|0911|0914|0916|0917|0919|0921|0941|0952|0957|0964|0968|0969|0971|0972|0974|0977|0979|0981|0987|0989|0991|0992|0993|0996|0998|1001|1004|1006|1007|1009|1013|1017|1018|1019|1022|1023|1024|1026|1031|1033|1034|1037|1038|1041|1043|1044|1045|1046|1049|1051|1053|1054|1057|1058|1059|1061|1062|1066|1067|1069|1071|1072|1074|1076|1077|1078|1082|1083|1088|1089|1090|1091|1092|1094|1095|1096|1097|1098|1099|1101|1102|1103|1104|1105|1106|1108|1109|1111|1112|1113|1114|1115|1116|1117|1119|1120|1121|1122|1123|1124|1126|1127|1128|1129|1130|1132|1133|1134|1136|1137|1138|1139|1141|1142|1143|1144|1145|1146|1147|1148|1149|1150|1151|1152|1153|1154|1155|1156|1157|1158|1159|1160|1162|1163|1164|1165|1166|1167|1168|1169|1170|1171|1172|1173|1174|1175|1176|1177|1178|1179|1181|1182|1183|1184|1185|1186|1187|1188|1189|1190|1191|1192|1193|1194|1195|1196|1197|1198|1199|1200|1201|1202|1203|1204|1205|1206|1207|1208|1209|1210|1211|1212|1213|1214|1215|1216|1217|1218|1219|1220|1221|1222|1223|1224|1225|1226|1227|1228|1229|1230|1231|1232|1233|1235|1236|1237|1238|1239|1240|1241|1242|1243|1244|1245|1246|1247|1248|1249|1250|1251|1252|1253|1254|1255|1256|1257|1258|1259|1260|1261|1262|1263|1264|1265|1266|1267|1268|1269|1270|1271|1272|1273|1274|1275|1276|1277|1278|1279|1280|1281|1282|1283|1284|1285|1286|1287|1288|1289|1290|1291|1292|1293|1294|1295|1296|1297|1298|1299|1300|1301|1302|1303|1304|1305|1306|1307|1308|1309|1310|1311|1312|1313|1314|1315|1316|1317|1318|1319|1320|1321|1322|1323|1324|1325|1326|1327|1328|1329|1330|1331|1332|1333|1334|1335|1336|1337|1338|1339|1340|1341|1342|1343|1344|1345|1346|1347|1348|1349|1350|1351|1352|1353|1354|1355|1356|1357|1358|1359|1360|1361|1362|1363|1364|1365|1366|1367|1368|1369|1370|1371|1372|1373|1374|1375|1376|1377|1378|1379|1380|1381|1382|1383|1384|1385|1386|1387|1388|1389|1390|1391|1392|1393|1394|1395|1396|1397|1398|1399|1400|1401|1402|1403|1404|1405|1406|1407|1408|1409|1410|1411|1412|1413|1414|1415|1416|1417|1418|1419|1420|1421|1422|1423|1424|1425|1426|1427|1428|1429|1430|1431|1432|1433|1434|1435|1436|1437|1438|1439|1440|1441|1442|1443|1444|1445|1446|1447|1448|1449|1450|1451|1452|1453|1454|1455|1456|1457|1458|1459|1460|1461|1462|1463|1464|1465|1466|1467|1468|1469|1470|1471|1472|1473|1474|1475|1476|1477|1478|1479|1480|1481|1482|1483|1484|1485|1486|1487|1488|1489|1490|1491|1492|1493|1494|1495|1496|1497|1498|1499|1500|1501|1502|1503|1504|1505|1506|1507|1508|1509|1511|1512|1513|1514|1515|1516|1517|1518|1519|1520|1521|1522|1523|1524|1526|1527|1528|1529|1531|1532|1533|1534|1535|1536|1537|1538|1539|1540|1541|1542|1543|1544|1545|1546|1547|1549|1550|1551|1553|1554|1555|1557|1559|1560|1561|1567|1568|1573|1576|1579|1581|1582|1586|1588|1597|1601|1605|1609|1614|1616|1620|1623|1641|1647|1651|1660|1662|1666|1667|1668|1669|1670|1674|1675|1676|1677|1679|1680|1682|1687|1688|1731|1748|1849|1980|1981|1982|1983|1984|1985|1986|1987|1988|1989|1990|1991|1992|1993|1994|1995|1996|1997|1998|1999|2000|2001|2002|2003|2004|2005|2006|2007|2008|2009|2010|2011|2012|2013|2014|2015|2016|2017|2018|2019|2020|2021|2022|2023"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2] "0002|0003|0004|0005|0006|0007|0008|0009|0010|0011|0012|0013|0014|0015|0016|0017|0018|0019|0020|0021|0022|0023|0024|0025|0026|0027|0028|0029|0030|0031|0032|0034|0035|0036|0037|0038|0039|0040|0041|0042|0043|0044|0045|0046|0047|0048|0049|0050|0051|0052|0053|0054|0055|0056|0057|0058|0059|0060|0061|0062|0063|0064|0065|0066|0068|0069|0071|0072|0073|0074|0075|0076|0077|0078|0079|0080|0081|0082|0083|0084|0085|0086|0087|0088|0089|0090|0091|0092|0093|0094|0095|0096|0097|0098|0099|0100|0101|0102|0103|0104|0105|0106|0107|0108|0109|0110|0111|0112|0113|0114|0115|0116|0117|0118|0119|0120|0121|0122|0123|0124|0125|0126|0127|0128|0129|0130|0131|0132|0133|0134|0135|0136|0137|0138|0140|0141|0142|0143|0144|0145|0146|0147|0148|0149|0150|0151|0152|0153|0154|0155|0156|0157|0158|0159|0160|0161|0162|0163|0164|0165|0166|0167|0168|0169|0170|0171|0172|0173|0174|0175|0176|0177|0178|0179|0180|0181|0182|0183|0184|0185|0186|0187|0188|0189|0190|0191|0192|0193|0194|0195|0196|0197|0198|0199|0200|0201|0202|0203|0204|0205|0206|0207|0208|0209|0210|0211|0212|0213|0214|0215|0216|0217|0218|0219|0220|0221|0222|0223|0224|0225|0226|0227|0228|0229|0230|0231|0232|0233|0234|0235|0236|0237|0238|0239|0240|0241|0242|0243|0244|0245|0246|0247|0248|0249|0250|0251|0252|0253|0254|0255|0256|0257|0258|0259|0260|0261|0262|0263|0264|0265|0266|0267|0268|0269|0270|0271|0272|0273|0274|0275|0276|0277|0278|0279|0280|0281|0282|0283|0284|0285|0286|0287|0288|0289|0290|0291|0292|0293|0294|0295|0296|0297|0298|0299|0300|0301|0302|0303|0304|0305|0306|0307|0308|0309|0310|0311|0312|0313|0314|0315|0316|0317|0318|0319|0320|0321|0322|0323|0324|0325|0326|0327|0328|0329|0330|0331|0332|0333|0334|0335|0336|0337|0338|0339|0340|0341|0342|0343|0344|0345|0346|0347|0348|0349|0350|0351|0352|0353|0354|0355|0356|0357|0358|0359|0360|0361|0362|0363|0364|0365|0366|0367|0368|0369|0370|0371|0372|0373|0374|0375|0378|0379|0380|0381|0382|0383|0384|0385|0386|0387|0388|0389|0390|0391|0392|0393|0394|0395|0396|0397|0398|0399|0400|0401|0402|0403|0404|0405|0406|0407|0408|0409|0410|0411|0412|0413|0414|0415|0416|0417|0418|0419|0420|0421|0422|0423|0424|0425|0426|0427|0428|0429|0430|0431|0432|0433|0434|0435|0436|0437|0438|0439|0440|0441|0442|0443|0444|0445|0446|0447|0448|0449|0450|0451|0452|0453|0454|0455|0456|0457|0458|0459|0460|0461|0462|0463|0464|0465|0466|0467|0468|0469|0470|0471|0472|0473|0474|0475|0476|0477|0478|0479|0480|0481|0482|0483|0484|0485|0486|0487|0488|0489|0490|0491|0492|0493|0494|0495|0496|0497|0498|0499|0500|0501|0502|0503|0504|0505|0506|0507|0508|0509|0510|0511|0512|0513|0514|0515|0516|0517|0518|0519|0520|0521|0522|0523|0524|0525|0526|0527|0528|0529|0530|0531|0532|0534|0535|0537|0538|0539|0540|0541|0542|0543|0544|0545|0546|0547|0548|0549|0550|0551|0552|0554|0555|0556|0557|0558|0559|0560|0561|0562|0563|0564|0565|0566|0567|0568|0569|0570|0571|0572|0573|0574|0575|0576|0577|0578|0579|0580|0581|0582|0583|0584|0585|0586|0587|0588|0589|0590|0591|0592|0593|0594|0595|0596|0597|0598|0599|0600|0601|0602|0603|0604|0605|0606|0607|0608|0609|0610|0611|0612|0613|0614|0615|0616|0617|0618|0619|0620|0621|0622|0623|0624|0625|0626|0627|0628|0629|0630|0631|0632|0633|0634|0635|0636|0638|0639|0640|0641|0642|0643|0644|0645|0646|0647|0648|0649|0650|0651|0652|0653|0654|0655|0656|0657|0658|0659|0660|0661|0662|0663|0664|0665|0666|0667|0668|0669|0670|0671|0672|0673|0674|0675|0676|0677|0678|0679|0680|0681|0682|0683|0684|0685|0686|0687|0688|0689|0690|0691|0692|0693|0694|0695|0696|0697|0698|0700|0701|0702|0703|0704|0705|0706|0707|0708|0709|0710|0711|0712|0713|0714|0715|0716|0718|0719|0720|0721|0722|0723|0724|0725|0726|0728|0729|0730|0731|0733|0734|0735|0736|0737|0738|0739|0740|0741|0742|0744|0745|0746|0747|0748|0749|0750|0751|0752|0753|0754|0755|0756|0757|0758|0759|0760|0761|0762|0763|0764|0765|0766|0767|0768|0769|0770|0771|0772|0773|0774|0775|0776|0777|0778|0779|0780|0781|0783|0784|0785|0786|0787|0788|0790|0791|0793|0794|0795|0796|0797|0798|0799|0800|0802|0805|0806|0808|0809|0810|0812|0814|0815|0816|0818|0819|0820|0821|0822|0823|0824|0825|0827|0829|0830|0833|0834|0835|0836|0837|0838|0839|0840|0841|0842|0844|0845|0846|0847|0848|0850|0852|0855|0858|0860|0861|0862|0864|0865|0866|0867|0868|0869|0870|0872|0874|0875|0877|0878|0879|0880|0881|0882|0883|0884|0886|0887|0888|0889|0890|0891|0892|0893|0894|0895|0896|0898|0900|0902|0904|0905|0906|0908|0910|0912|0913|0915|0918|0920|0922|0923|0924|0925|0926|0927|0928|0929|0930|0931|0932|0933|0934|0935|0936|0937|0938|0939|0940|0942|0943|0944|0945|0946|0947|0948|0949|0950|0951|0953|0954|0955|0956|0958|0959|0960|0961|0962|0963|0965|0966|0967|0970|0973|0975|0976|0978|0980|0982|0983|0984|0985|0986|0988|0990|0994|0995|0997|0999|1000|1002|1003|1005|1008|1010|1011|1012|1014|1015|1016|1020|1021|1025|1027|1028|1029|1030|1032|1035|1036|1039|1040|1042|1047|1048|1050|1052|1055|1056|1060|1063|1064|1065|1068|1070|1073|1075|1079|1080|1081|1084|1085|1086|1087|1093|1100|1107|1110|1118|1125|1131|1135|1140|1161|1180|1234"
## [3] "1510|1525|1530|1548|1552|1556|1558|1562|1563|1564|1565|1566|1569|1570|1571|1572|1574|1575|1577|1578|1580|1583|1584|1585|1587|1589|1590|1591|1592|1593|1594|1595|1596|1598|1599|1600|1602|1603|1604|1606|1607|1608|1610|1611|1612|1613|1615|1617|1618|1619|1621|1622|1624|1625|1626|1627|1628|1629|1630|1631|1632|1633|1634|1635|1636|1637|1638|1639|1640|1642|1643|1644|1645|1646|1648|1649|1650|1652|1653|1654|1655|1656|1657|1658|1659|1661|1663|1664|1665|1671|1672|1673|1678|1681|1683|1684|1685|1686|1689|1690|1691|1692|1693|1694|1695|1696|1697|1698|1699|1700|1701|1702|1703|1704|1705|1706|1707|1708|1709|1710|1711|1712|1713|1714|1715|1716|1717|1718|1719|1720|1721|1722|1723|1724|1725|1726|1727|1728|1729|1730|1732|1733|1734|1735|1736|1737|1738|1739|1740|1741|1742|1743|1744|1745|1746|1747|1749|1750|1751|1752|1753|1754|1755|1756|1757|1758|1759|1760|1761|1762|1763|1764|1765|1766|1767|1768|1769|1770|1771|1772|1773|1774|1775|1776|1777|1778|1779|1780|1781|1782|1783|1784|1785|1786|1787|1788|1789|1790|1791|1792|1793|1794|1795|1796|1797|1798|1799|1800|1801|1802|1803|1804|1805|1806|1807|1808|1809|1810|1811|1812|1813|1814|1815|1816|1817|1818|1819|1820|1821|1822|1823|1824|1825|1826|1827|1828|1829|1830|1831|1832|1833|1834|1835|1836|1837|1838|1839|1840|1841|1842|1843|1844|1845|1846|1847|1848|1850|1851|1852|1853|1854|1855|1856|1857|1858|1859|1860|1861|1862|1863|1864|1865|1866|1867|1868|1869|1870|1871|1872|1873|1874|1875|1876|1877|1878|1879|1880|1881|1882|1883|1884|1885|1886|1887|1888|1889|1890|1891|1892|1893|1894|1895|1896|1897|1898|1899|1900|1901|1902|1903|1904|1905|1906|1907|1908|1909|1910|1911|1912|1913|1914|1915|1916|1917|1918|1919|1920|1921|1922|1923|1924|1925|1926|1927|1928|1929|1930|1931|1932|1933|1934|1935|1936|1937|1938|1939|1940|1941|1942|1943|1944|1945|1946|1947|1948|1949|1950|1951|1952|1953|1954|1955|1956|1957|1958|1959|1960|1961|1962|1963|1964|1965|1966|1967|1968|1969|1970|1971|1972|1973|1974|1975|1976|1977|1978|1979"
dsst_kwic(anno, terms = "pandemic")
## [doc1510]        The influenza |pandemic| reaches Sicily , whe
## [doc1846]            – cholera |pandemic| breaks out in south 
## [doc1919] e global Spanish flu |pandemic| has ceased .        
## [doc2020] 1. [ ] April COVID - |pandemic|
## [doc2020] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020] period . [ ] COVID - |pandemic| :                   
## [doc2020] ly . [ ] [ ] COVID - |pandemic| :                   
## [doc2020]  facing some form of |pandemic| - related movement r
## [doc2020] ed eye . [ ] COVID - |pandemic| :                   
## [doc2020]         June COVID - |pandemic| :                   
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020] rations. [ ] COVID - |pandemic| :                   
## [doc2020] 991. [ ] [ ] COVID - |pandemic| :                   
## [doc2020] ected.[ ][ ] COVID - |pandemic| :                   
## [doc2020]       July – COVID - |pandemic| :                   
## [doc2020] ] December – COVID - |pandemic| :                   
## [doc2021]       June – COVID - |pandemic| :                   
## [doc2021] rs caused by COVID - |pandemic| , Aviva Stadium in D
dsst_kwic(anno, terms = "Covid")
## [doc2020]             December |COVID| - pandemic :        
## [doc2020] U.S. history.[ ] [ ] |COVID| - pandemic :        
## [doc2020] matic relations. [ ] |COVID| - pandemic :        
## [doc2020] f malaria. [ ] May – |COVID| - pandemic :        
## [doc2020] ule aspirations. [ ] |COVID| - pandemic :        
## [doc2020] otal number of known |COVID| - cases , with at le
## [doc2020] rsity study suggests |COVID| - may have been spre
## [doc2020]                 June |COVID| - pandemic :        
## [doc2020]                      |COVID| - pandemic :        
## [doc2020] otal number of known |COVID| - cases , with at le
## [doc2020] on June 17. [ ] June |COVID| - pandemic :        
## [doc2020]  including combating |COVID| - in respective coun
## [doc2020] ense forces. [ ] [ ] |COVID| - pandemic :        
## [doc2020] f confirmed cases of |COVID| - passes million wor
## [doc2020] oing armed conflicts |COVID| - pandemic Portal : 
## [doc2020]                March |COVID| - pandemic : Global 
## [doc2020]  number of recovered |COVID| - patients reaches m
## [doc2021] cted . [ ] January – |COVID| - pandemic :        
## [doc2021] sy in Jerusalem. [ ] |COVID| - pandemic :        
## [doc2021] on of contest due to |COVID| - pandemic. [ ] [ ]
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "decade", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 4) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    geom_text_repel(aes(label = paste0(decade, "s")), size = 2, show.legend = FALSE)

    theme_void()
## List of 97
##  $ line                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ rect                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ text                      :List of 11
##   ..$ family       : chr ""
##   ..$ face         : chr "plain"
##   ..$ colour       : chr "black"
##   ..$ size         : num 11
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : num 0
##   ..$ lineheight   : num 0.9
##   ..$ margin       : 'margin' num [1:4] 0points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : logi FALSE
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ title                     : NULL
##  $ aspect.ratio              : NULL
##  $ axis.title                : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.title.x              : NULL
##  $ axis.title.x.top          : NULL
##  $ axis.title.x.bottom       : NULL
##  $ axis.title.y              : NULL
##  $ axis.title.y.left         : NULL
##  $ axis.title.y.right        : NULL
##  $ axis.text                 : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.text.x               : NULL
##  $ axis.text.x.top           : NULL
##  $ axis.text.x.bottom        : NULL
##  $ axis.text.y               : NULL
##  $ axis.text.y.left          : NULL
##  $ axis.text.y.right         : NULL
##  $ axis.ticks                : NULL
##  $ axis.ticks.x              : NULL
##  $ axis.ticks.x.top          : NULL
##  $ axis.ticks.x.bottom       : NULL
##  $ axis.ticks.y              : NULL
##  $ axis.ticks.y.left         : NULL
##  $ axis.ticks.y.right        : NULL
##  $ axis.ticks.length         : 'simpleUnit' num 0points
##   ..- attr(*, "unit")= int 8
##  $ axis.ticks.length.x       : NULL
##  $ axis.ticks.length.x.top   : NULL
##  $ axis.ticks.length.x.bottom: NULL
##  $ axis.ticks.length.y       : NULL
##  $ axis.ticks.length.y.left  : NULL
##  $ axis.ticks.length.y.right : NULL
##  $ axis.line                 : NULL
##  $ axis.line.x               : NULL
##  $ axis.line.x.top           : NULL
##  $ axis.line.x.bottom        : NULL
##  $ axis.line.y               : NULL
##  $ axis.line.y.left          : NULL
##  $ axis.line.y.right         : NULL
##  $ legend.background         : NULL
##  $ legend.margin             : NULL
##  $ legend.spacing            : NULL
##  $ legend.spacing.x          : NULL
##  $ legend.spacing.y          : NULL
##  $ legend.key                : NULL
##  $ legend.key.size           : 'simpleUnit' num 1.2lines
##   ..- attr(*, "unit")= int 3
##  $ legend.key.height         : NULL
##  $ legend.key.width          : NULL
##  $ legend.text               :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.text.align         : NULL
##  $ legend.title              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.title.align        : NULL
##  $ legend.position           : chr "right"
##  $ legend.direction          : NULL
##  $ legend.justification      : NULL
##  $ legend.box                : NULL
##  $ legend.box.just           : NULL
##  $ legend.box.margin         : NULL
##  $ legend.box.background     : NULL
##  $ legend.box.spacing        : NULL
##  $ panel.background          : NULL
##  $ panel.border              : NULL
##  $ panel.spacing             : 'simpleUnit' num 5.5points
##   ..- attr(*, "unit")= int 8
##  $ panel.spacing.x           : NULL
##  $ panel.spacing.y           : NULL
##  $ panel.grid                : NULL
##  $ panel.grid.major          : NULL
##  $ panel.grid.minor          : NULL
##  $ panel.grid.major.x        : NULL
##  $ panel.grid.major.y        : NULL
##  $ panel.grid.minor.x        : NULL
##  $ panel.grid.minor.y        : NULL
##  $ panel.ontop               : logi FALSE
##  $ plot.background           : NULL
##  $ plot.title                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.title.position       : chr "panel"
##  $ plot.subtitle             :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : num 1
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption.position     : chr "panel"
##  $ plot.tag                  :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.tag.position         : chr "topleft"
##  $ plot.margin               : 'simpleUnit' num [1:4] 0lines 0lines 0lines 0lines
##   ..- attr(*, "unit")= int 3
##  $ strip.background          : NULL
##  $ strip.background.x        : NULL
##  $ strip.background.y        : NULL
##  $ strip.clip                : chr "inherit"
##  $ strip.placement           : NULL
##  $ strip.text                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ strip.text.x              : NULL
##  $ strip.text.x.bottom       : NULL
##  $ strip.text.x.top          : NULL
##  $ strip.text.y              : NULL
##  $ strip.text.y.left         : NULL
##  $ strip.text.y.right        : NULL
##  $ strip.switch.pad.grid     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  $ strip.switch.pad.wrap     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  - attr(*, "class")= chr [1:2] "theme" "gg"
##  - attr(*, "complete")= logi TRUE
##  - attr(*, "validate")= logi TRUE
docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "decade", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 4) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id, decade), by = "doc_id") %>%
  mutate(decade = as.character(decade)) %>%
  inner_join(docs_cluster, by = "decade", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster", doc_var = "decade") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "american d. b. , actor - actress politician british ( ) d singer player English bear german composer french director Dutch canadian painter author January"                    
## [2] "approximate king date he { Byzantine Tang ibn year . calendar Dynasty center Frankish a naming medieval prevalent saxon denomination method Charlemagne period early of"       
## [3] "nobleman of he ] I a [ knight al ii to ruler king Mongol be Byzantine date by III approximate Covid duke Al IV crusader"                                                       
## [4] "year Roman calendar condita urbe Consulship frequently ab chinese emperor less prevalent naming denomination method medieval or period early era Europe know Domini Anno since"
dsst_kwic(anno, terms = "al")
## [doc0634] f Allah : Khalid bin |al| - Waleed , His Life 
## [doc0716]               Sufyan |al| - Thawri , Muslim sc
## [doc0799]                 Musa |al| - Kadhim , seventh T
## [doc0809] A rebellion in Gharb |al| - Andalus ( modern P
## [doc0827] orces under Asad ibn |al| - Furat , in support
## [doc0902] caliph August – Badr |al| - Mu'tadidi , Abbasi
## [doc0911] icilian governor Ibn |al| - Khinzir raids sout
## [doc0958] rgia ) Ammar ibn Ali |al| - Kalbi , Fatimid mi
## [doc1002]    May – Al - Khatib |al| - Baghdadi , Muslim 
## [doc1028] ss and wife of Fakhr |al| - Dawla William of B
## [doc1144] k forces led by Imad |al| - Din Zengi conquer 
## [doc1145] efender of faith and |al| - Malik al - Mansur 
## [doc1163]    As - Salih Ismail |al| - Malik , ruler of S
## [doc1207] nobleman ( d. ) Sadr |al| - Din al - Qunawi , 
## [doc1261]  Abu Bakr ibn Sayyid |al| - Nas , Andalusian (
## [doc1309]     Abu Abdallah ibn |al| - Hakim , Andalusian
## [doc1472] Sultan Abu Abd Allah |al| - Sheikh Muhammad ib
## [doc1547] . ) February – Baha<U+02BE> |al| - din al-<U+02BF>Amili , Sy
## [doc1973]               Hassan |al| - Hudaybi , Egyptian
## [doc1988] es led by Ali Hassan |al| - Majid on orders of
decades <- docs_cluster %>%
  group_by(cluster) %>%
  summarize(decades = paste0(decade, "s", collapse = "|"))
print(decades$decades)
## [1] "1480s|1490s|1500s|1510s|1520s|1530s|1540s|1550s|1560s|1570s|1580s|1590s|1600s|1610s|1620s|1630s|1640s|1650s|1660s|1670s|1680s|1690s|1700s|1710s|1720s|1730s|1740s|1750s|1760s|1770s|1780s|1790s|1800s|1810s|1820s|1830s|1840s|1850s|1860s|1870s|1880s|1890s|1900s|1910s|1920s|1930s|1940s|1950s|1960s|1970s"                                                                                                                 
## [2] "60s|530s|540s|550s|560s|570s|580s|590s|600s|610s|620s|630s|640s|650s|660s|670s|680s|690s|700s|710s|720s|730s|740s|750s|760s|770s|780s|790s|800s"                                                                                                                                                                                                                                                                             
## [3] "810s|820s|830s|840s|850s|860s|870s|880s|890s|900s|910s|920s|930s|940s|950s|960s|970s|980s|990s|1000s|1010s|1020s|1030s|1040s|1050s|1060s|1070s|1080s|1090s|1100s|1110s|1120s|1130s|1140s|1150s|1160s|1170s|1180s|1190s|1200s|1210s|1220s|1230s|1240s|1250s|1260s|1270s|1280s|1290s|1300s|1310s|1320s|1330s|1340s|1350s|1360s|1370s|1380s|1390s|1400s|1410s|1420s|1430s|1440s|1450s|1460s|1470s|1980s|1990s|2000s|2010s|2020s"
## [4] "0s|10s|20s|30s|40s|50s|70s|80s|90s|100s|110s|120s|130s|140s|150s|160s|170s|180s|190s|200s|210s|220s|230s|240s|250s|260s|270s|280s|290s|300s|310s|320s|330s|340s|350s|360s|370s|380s|390s|400s|410s|420s|430s|440s|450s|460s|470s|480s|490s|500s|510s|520s"
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "decade") %>%
  dsst_kmeans(n_clusters = 5) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    geom_text_repel(aes(label = paste0(decade, "s")), size = 2, show.legend = FALSE)

    theme_void()
## List of 97
##  $ line                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ rect                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ text                      :List of 11
##   ..$ family       : chr ""
##   ..$ face         : chr "plain"
##   ..$ colour       : chr "black"
##   ..$ size         : num 11
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : num 0
##   ..$ lineheight   : num 0.9
##   ..$ margin       : 'margin' num [1:4] 0points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : logi FALSE
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ title                     : NULL
##  $ aspect.ratio              : NULL
##  $ axis.title                : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.title.x              : NULL
##  $ axis.title.x.top          : NULL
##  $ axis.title.x.bottom       : NULL
##  $ axis.title.y              : NULL
##  $ axis.title.y.left         : NULL
##  $ axis.title.y.right        : NULL
##  $ axis.text                 : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.text.x               : NULL
##  $ axis.text.x.top           : NULL
##  $ axis.text.x.bottom        : NULL
##  $ axis.text.y               : NULL
##  $ axis.text.y.left          : NULL
##  $ axis.text.y.right         : NULL
##  $ axis.ticks                : NULL
##  $ axis.ticks.x              : NULL
##  $ axis.ticks.x.top          : NULL
##  $ axis.ticks.x.bottom       : NULL
##  $ axis.ticks.y              : NULL
##  $ axis.ticks.y.left         : NULL
##  $ axis.ticks.y.right        : NULL
##  $ axis.ticks.length         : 'simpleUnit' num 0points
##   ..- attr(*, "unit")= int 8
##  $ axis.ticks.length.x       : NULL
##  $ axis.ticks.length.x.top   : NULL
##  $ axis.ticks.length.x.bottom: NULL
##  $ axis.ticks.length.y       : NULL
##  $ axis.ticks.length.y.left  : NULL
##  $ axis.ticks.length.y.right : NULL
##  $ axis.line                 : NULL
##  $ axis.line.x               : NULL
##  $ axis.line.x.top           : NULL
##  $ axis.line.x.bottom        : NULL
##  $ axis.line.y               : NULL
##  $ axis.line.y.left          : NULL
##  $ axis.line.y.right         : NULL
##  $ legend.background         : NULL
##  $ legend.margin             : NULL
##  $ legend.spacing            : NULL
##  $ legend.spacing.x          : NULL
##  $ legend.spacing.y          : NULL
##  $ legend.key                : NULL
##  $ legend.key.size           : 'simpleUnit' num 1.2lines
##   ..- attr(*, "unit")= int 3
##  $ legend.key.height         : NULL
##  $ legend.key.width          : NULL
##  $ legend.text               :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.text.align         : NULL
##  $ legend.title              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.title.align        : NULL
##  $ legend.position           : chr "right"
##  $ legend.direction          : NULL
##  $ legend.justification      : NULL
##  $ legend.box                : NULL
##  $ legend.box.just           : NULL
##  $ legend.box.margin         : NULL
##  $ legend.box.background     : NULL
##  $ legend.box.spacing        : NULL
##  $ panel.background          : NULL
##  $ panel.border              : NULL
##  $ panel.spacing             : 'simpleUnit' num 5.5points
##   ..- attr(*, "unit")= int 8
##  $ panel.spacing.x           : NULL
##  $ panel.spacing.y           : NULL
##  $ panel.grid                : NULL
##  $ panel.grid.major          : NULL
##  $ panel.grid.minor          : NULL
##  $ panel.grid.major.x        : NULL
##  $ panel.grid.major.y        : NULL
##  $ panel.grid.minor.x        : NULL
##  $ panel.grid.minor.y        : NULL
##  $ panel.ontop               : logi FALSE
##  $ plot.background           : NULL
##  $ plot.title                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.title.position       : chr "panel"
##  $ plot.subtitle             :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : num 1
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption.position     : chr "panel"
##  $ plot.tag                  :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.tag.position         : chr "topleft"
##  $ plot.margin               : 'simpleUnit' num [1:4] 0lines 0lines 0lines 0lines
##   ..- attr(*, "unit")= int 3
##  $ strip.background          : NULL
##  $ strip.background.x        : NULL
##  $ strip.background.y        : NULL
##  $ strip.clip                : chr "inherit"
##  $ strip.placement           : NULL
##  $ strip.text                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ strip.text.x              : NULL
##  $ strip.text.x.bottom       : NULL
##  $ strip.text.x.top          : NULL
##  $ strip.text.y              : NULL
##  $ strip.text.y.left         : NULL
##  $ strip.text.y.right        : NULL
##  $ strip.switch.pad.grid     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  $ strip.switch.pad.wrap     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  - attr(*, "class")= chr [1:2] "theme" "gg"
##  - attr(*, "complete")= logi TRUE
##  - attr(*, "validate")= logi TRUE
docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "decade") %>%
  dsst_kmeans(n_clusters = 5) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id, decade), by = "doc_id") %>%
  mutate(decade = as.character(decade)) %>%
  inner_join(docs_cluster, by = "decade", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster", doc_var = "decade") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "approximate king { date he Tang Byzantine ibn . year Dynasty calendar center Frankish a saxon Charlemagne naming prevalent medieval denomination method Northumbria Lombard early"   
## [2] "american actor actress d. singer , player british bear director United film politician canadian Minister States Prime Nobel Prize footballer President b. musician producer football"
## [3] "nobleman he I of king al knight ii approximate ruler Byzantine date Mongol duke or III Frankish Norman archbishop Al bishop ibn crusader no Fujiwara"                                
## [4] "d of Duke de noble - English Dutch England Earl painter Covid italian Jesuit unknown Flemish Baronet Johann Duchess Countess spanish Brandenburg people cardinal in"                 
## [5] "year Roman calendar condita urbe Consulship frequently ab emperor chinese less prevalent naming denomination method medieval or period early era Europe know Domini Anno be"
decades <- docs_cluster %>%
  group_by(cluster) %>%
  summarize(decades = paste0(decade, "s", collapse = "|"))
print(decades$decades)
## [1] "540s|550s|560s|570s|580s|590s|600s|610s|620s|630s|640s|650s|660s|670s|680s|690s|700s|710s|720s|730s|740s|750s|760s|770s|780s|790s|800s"                                                                                                                                                              
## [2] "1720s|1730s|1740s|1750s|1760s|1770s|1780s|1790s|1800s|1810s|1820s|1830s|1840s|1850s|1860s|1870s|1880s|1890s|1900s|1910s|1920s|1930s|1940s|1950s|1960s|1970s"                                                                                                                                         
## [3] "810s|820s|830s|840s|850s|860s|870s|880s|890s|900s|910s|920s|930s|940s|950s|960s|970s|980s|990s|1000s|1010s|1020s|1030s|1040s|1050s|1060s|1070s|1080s|1090s|1100s|1110s|1120s|1130s|1140s|1150s|1160s|1170s|1180s|1190s|1200s|1210s|1220s|1230s|1240s|1250s|1260s|1270s|1280s|1290s|1300s|1310s|1320s"
## [4] "1330s|1340s|1350s|1360s|1370s|1380s|1390s|1400s|1410s|1420s|1430s|1440s|1450s|1460s|1470s|1480s|1490s|1500s|1510s|1520s|1530s|1540s|1550s|1560s|1570s|1580s|1590s|1600s|1610s|1620s|1630s|1640s|1650s|1660s|1670s|1680s|1690s|1700s|1710s|1980s|1990s|2000s|2010s|2020s"                             
## [5] "0s|10s|20s|30s|40s|50s|60s|70s|80s|90s|100s|110s|120s|130s|140s|150s|160s|170s|180s|190s|200s|210s|220s|230s|240s|250s|260s|270s|280s|290s|300s|310s|320s|330s|340s|350s|360s|370s|380s|390s|400s|410s|420s|430s|440s|450s|460s|470s|480s|490s|500s|510s|520s|530s"
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "century", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 5) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    geom_text_repel(aes(label = century), show.legend = FALSE)

    theme_void()
## List of 97
##  $ line                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ rect                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ text                      :List of 11
##   ..$ family       : chr ""
##   ..$ face         : chr "plain"
##   ..$ colour       : chr "black"
##   ..$ size         : num 11
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : num 0
##   ..$ lineheight   : num 0.9
##   ..$ margin       : 'margin' num [1:4] 0points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : logi FALSE
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ title                     : NULL
##  $ aspect.ratio              : NULL
##  $ axis.title                : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.title.x              : NULL
##  $ axis.title.x.top          : NULL
##  $ axis.title.x.bottom       : NULL
##  $ axis.title.y              : NULL
##  $ axis.title.y.left         : NULL
##  $ axis.title.y.right        : NULL
##  $ axis.text                 : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.text.x               : NULL
##  $ axis.text.x.top           : NULL
##  $ axis.text.x.bottom        : NULL
##  $ axis.text.y               : NULL
##  $ axis.text.y.left          : NULL
##  $ axis.text.y.right         : NULL
##  $ axis.ticks                : NULL
##  $ axis.ticks.x              : NULL
##  $ axis.ticks.x.top          : NULL
##  $ axis.ticks.x.bottom       : NULL
##  $ axis.ticks.y              : NULL
##  $ axis.ticks.y.left         : NULL
##  $ axis.ticks.y.right        : NULL
##  $ axis.ticks.length         : 'simpleUnit' num 0points
##   ..- attr(*, "unit")= int 8
##  $ axis.ticks.length.x       : NULL
##  $ axis.ticks.length.x.top   : NULL
##  $ axis.ticks.length.x.bottom: NULL
##  $ axis.ticks.length.y       : NULL
##  $ axis.ticks.length.y.left  : NULL
##  $ axis.ticks.length.y.right : NULL
##  $ axis.line                 : NULL
##  $ axis.line.x               : NULL
##  $ axis.line.x.top           : NULL
##  $ axis.line.x.bottom        : NULL
##  $ axis.line.y               : NULL
##  $ axis.line.y.left          : NULL
##  $ axis.line.y.right         : NULL
##  $ legend.background         : NULL
##  $ legend.margin             : NULL
##  $ legend.spacing            : NULL
##  $ legend.spacing.x          : NULL
##  $ legend.spacing.y          : NULL
##  $ legend.key                : NULL
##  $ legend.key.size           : 'simpleUnit' num 1.2lines
##   ..- attr(*, "unit")= int 3
##  $ legend.key.height         : NULL
##  $ legend.key.width          : NULL
##  $ legend.text               :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.text.align         : NULL
##  $ legend.title              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.title.align        : NULL
##  $ legend.position           : chr "right"
##  $ legend.direction          : NULL
##  $ legend.justification      : NULL
##  $ legend.box                : NULL
##  $ legend.box.just           : NULL
##  $ legend.box.margin         : NULL
##  $ legend.box.background     : NULL
##  $ legend.box.spacing        : NULL
##  $ panel.background          : NULL
##  $ panel.border              : NULL
##  $ panel.spacing             : 'simpleUnit' num 5.5points
##   ..- attr(*, "unit")= int 8
##  $ panel.spacing.x           : NULL
##  $ panel.spacing.y           : NULL
##  $ panel.grid                : NULL
##  $ panel.grid.major          : NULL
##  $ panel.grid.minor          : NULL
##  $ panel.grid.major.x        : NULL
##  $ panel.grid.major.y        : NULL
##  $ panel.grid.minor.x        : NULL
##  $ panel.grid.minor.y        : NULL
##  $ panel.ontop               : logi FALSE
##  $ plot.background           : NULL
##  $ plot.title                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.title.position       : chr "panel"
##  $ plot.subtitle             :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : num 1
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption.position     : chr "panel"
##  $ plot.tag                  :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.tag.position         : chr "topleft"
##  $ plot.margin               : 'simpleUnit' num [1:4] 0lines 0lines 0lines 0lines
##   ..- attr(*, "unit")= int 3
##  $ strip.background          : NULL
##  $ strip.background.x        : NULL
##  $ strip.background.y        : NULL
##  $ strip.clip                : chr "inherit"
##  $ strip.placement           : NULL
##  $ strip.text                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ strip.text.x              : NULL
##  $ strip.text.x.bottom       : NULL
##  $ strip.text.x.top          : NULL
##  $ strip.text.y              : NULL
##  $ strip.text.y.left         : NULL
##  $ strip.text.y.right        : NULL
##  $ strip.switch.pad.grid     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  $ strip.switch.pad.wrap     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  - attr(*, "class")= chr [1:2] "theme" "gg"
##  - attr(*, "complete")= logi TRUE
##  - attr(*, "validate")= logi TRUE
docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "century", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 5) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id, century), by = "doc_id") %>%
  mutate(century = as.character(century)) %>%
  inner_join(docs_cluster, by = "century", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster", doc_var = "century") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "nobleman of knight I he ii Mongol III ruler IV Norman king crusader al Henry Seljuk Castile queen Din count or noblewoman knights bishop Byzantine"                
## [2] "american d. actor b. , actress - british politician singer player d bear English canadian United composer german Minister director french President Soviet ( Prime"
## [3] "] [ Frankish Covid a approximate pandemic al date Abbasid king Muslim ibn he Tang Viking chancellor be people to Dynasty Al duke election in"                      
## [4] "year Roman calendar frequently emperor ab less chinese prevalent naming denomination method medieval period early or era Europe Domini Anno . deaths since he be"  
## [5] "approximate Tang king he { ibn date Byzantine year . saxon Frankish Dynasty arab Northumbria calendar Muslim Charlemagne center a Umayyad Heraclius medieval al no"
docs_cluster %>%
  group_by(cluster) %>%
  summarize(centuries = paste(century, collapse = "|"))
## # A tibble: 5 x 2
##   cluster centuries     
##     <dbl> <chr>         
## 1       1 11|12|13|14|15
## 2       2 16|17|18|19|20
## 3       3 9|10|21       
## 4       4 1|2|3|4|5|6   
## 5       5 7|8
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "century") %>%
  dsst_kmeans(n_clusters = 3) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    geom_text_repel(aes(label = century), show.legend = FALSE)

    theme_void()
## List of 97
##  $ line                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ rect                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ text                      :List of 11
##   ..$ family       : chr ""
##   ..$ face         : chr "plain"
##   ..$ colour       : chr "black"
##   ..$ size         : num 11
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : num 0
##   ..$ lineheight   : num 0.9
##   ..$ margin       : 'margin' num [1:4] 0points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : logi FALSE
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ title                     : NULL
##  $ aspect.ratio              : NULL
##  $ axis.title                : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.title.x              : NULL
##  $ axis.title.x.top          : NULL
##  $ axis.title.x.bottom       : NULL
##  $ axis.title.y              : NULL
##  $ axis.title.y.left         : NULL
##  $ axis.title.y.right        : NULL
##  $ axis.text                 : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.text.x               : NULL
##  $ axis.text.x.top           : NULL
##  $ axis.text.x.bottom        : NULL
##  $ axis.text.y               : NULL
##  $ axis.text.y.left          : NULL
##  $ axis.text.y.right         : NULL
##  $ axis.ticks                : NULL
##  $ axis.ticks.x              : NULL
##  $ axis.ticks.x.top          : NULL
##  $ axis.ticks.x.bottom       : NULL
##  $ axis.ticks.y              : NULL
##  $ axis.ticks.y.left         : NULL
##  $ axis.ticks.y.right        : NULL
##  $ axis.ticks.length         : 'simpleUnit' num 0points
##   ..- attr(*, "unit")= int 8
##  $ axis.ticks.length.x       : NULL
##  $ axis.ticks.length.x.top   : NULL
##  $ axis.ticks.length.x.bottom: NULL
##  $ axis.ticks.length.y       : NULL
##  $ axis.ticks.length.y.left  : NULL
##  $ axis.ticks.length.y.right : NULL
##  $ axis.line                 : NULL
##  $ axis.line.x               : NULL
##  $ axis.line.x.top           : NULL
##  $ axis.line.x.bottom        : NULL
##  $ axis.line.y               : NULL
##  $ axis.line.y.left          : NULL
##  $ axis.line.y.right         : NULL
##  $ legend.background         : NULL
##  $ legend.margin             : NULL
##  $ legend.spacing            : NULL
##  $ legend.spacing.x          : NULL
##  $ legend.spacing.y          : NULL
##  $ legend.key                : NULL
##  $ legend.key.size           : 'simpleUnit' num 1.2lines
##   ..- attr(*, "unit")= int 3
##  $ legend.key.height         : NULL
##  $ legend.key.width          : NULL
##  $ legend.text               :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.text.align         : NULL
##  $ legend.title              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.title.align        : NULL
##  $ legend.position           : chr "right"
##  $ legend.direction          : NULL
##  $ legend.justification      : NULL
##  $ legend.box                : NULL
##  $ legend.box.just           : NULL
##  $ legend.box.margin         : NULL
##  $ legend.box.background     : NULL
##  $ legend.box.spacing        : NULL
##  $ panel.background          : NULL
##  $ panel.border              : NULL
##  $ panel.spacing             : 'simpleUnit' num 5.5points
##   ..- attr(*, "unit")= int 8
##  $ panel.spacing.x           : NULL
##  $ panel.spacing.y           : NULL
##  $ panel.grid                : NULL
##  $ panel.grid.major          : NULL
##  $ panel.grid.minor          : NULL
##  $ panel.grid.major.x        : NULL
##  $ panel.grid.major.y        : NULL
##  $ panel.grid.minor.x        : NULL
##  $ panel.grid.minor.y        : NULL
##  $ panel.ontop               : logi FALSE
##  $ plot.background           : NULL
##  $ plot.title                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.title.position       : chr "panel"
##  $ plot.subtitle             :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : num 1
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption.position     : chr "panel"
##  $ plot.tag                  :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.tag.position         : chr "topleft"
##  $ plot.margin               : 'simpleUnit' num [1:4] 0lines 0lines 0lines 0lines
##   ..- attr(*, "unit")= int 3
##  $ strip.background          : NULL
##  $ strip.background.x        : NULL
##  $ strip.background.y        : NULL
##  $ strip.clip                : chr "inherit"
##  $ strip.placement           : NULL
##  $ strip.text                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ strip.text.x              : NULL
##  $ strip.text.x.bottom       : NULL
##  $ strip.text.x.top          : NULL
##  $ strip.text.y              : NULL
##  $ strip.text.y.left         : NULL
##  $ strip.text.y.right        : NULL
##  $ strip.switch.pad.grid     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  $ strip.switch.pad.wrap     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  - attr(*, "class")= chr [1:2] "theme" "gg"
##  - attr(*, "complete")= logi TRUE
##  - attr(*, "validate")= logi TRUE
docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "century") %>%
  dsst_kmeans(n_clusters = 3) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id, century), by = "doc_id") %>%
  mutate(century = as.character(century)) %>%
  inner_join(docs_cluster, by = "century", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster", doc_var = "century") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 100) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "year Roman calendar condita urbe chinese frequently Consulship ab emperor less prevalent naming denomination method or medieval period early era know Europe Domini Anno be since deaths . for when Births use entities Cao Rome become display link Han full he have time Julian Marcus it leader State political Jin will Constantius Severus Theodosius approximate Aurelius start Wei Empire Liu as consul Lucius date Claudius Gaul Flavius Hadrian Alexandria Caesar christian common usurper Diocletian official Dynasty legion at Goth Trajan Sima prefect Romans Tuoba Huns Nero Tiberius Danube martyr empress Parthian magister Augustus of Titus Maximus militum Yan Western Julius"                                      
## [2] "american d. b. - actor , actress English british french politician singer german player ( ) d bear canadian Dutch de writer May director composer March February Soviet July January November April October December August Minister film September June musician Nobel Prize Prime States author footballer United President New Sir painter Austrian von spanish italian James football George John songwriter swedish television William British Joseph Australian admiral physicist polish Army artist chemist journalist Jan Thomas activist officer lawyer businessman mexican russian Royal War General novelist Feb brazilian Governor professional Johann scottish Mar voice indian engineer France athlete coach first Jean"
## [3] "approximate date king Frankish he Byzantine Tang of ibn a al { Dynasty I Muslim no Covid ] year duke chancellor emperor be mac [ Abbasid calendar succeed . Northumbria ii ruler Lombard Al to leader Wessex center entities modern son reign display Fujiwara link arab saxon Charlemagne full abbot pandemic Li Births Viking Umayyad Constantinople establishments by bishop after emir deaths caliph Isbn religious Persian Burgundy Caliphate will monk right Zong political State Pepin pope \\ chinese Justinian Muhammad Caliph Austrasia inherit city dynasty font brother prince Fatimid since ' Berengar Julian monastery Sui III Abd Heraclius summer archbishop"
dsst_kwic(anno, terms = "mac")
## [doc0600]                 Uatu |mac| Áedo , king of Conna
## [doc0615] bel leader Máel Coba |mac| Áedo , High King of 
## [doc0723] ke of Alsace Fachtna |mac| Folachtan , Irish ab
## [doc0728] nasty ( or ) Domnall |mac| Cellaig , king of Co
## [doc0733]              Eochaid |mac| Echdach , king of Dá
## [doc0760] ate date ) Muiredach |mac| Murchado , king of L
## [doc0769]           Conchubhar |mac| Cumasgach , king of 
## [doc0785] uslim Caliph Ruaidrí |mac| Fáeláin , king of Le
## [doc0842]               Dúngal |mac| Fergaile , king of O
## [doc0843]               Fergus |mac| Fothaid , king of Co
## [doc0871] kish nobleman Ailill |mac| Dúnlainge , king of 
## [doc0908] missionary Cléirchén |mac| Murchadh , king of M
## [doc0914]                 Aedh |mac| Ailell , abbot of Cl
## [doc1030]                 Mara |mac| Maic Liac , Irish po
## [doc1072]  February – Diarmait |mac| Máel na mBó , king o
## [doc1118]            Cu Faifne |mac| Congalaig becomes Ki
## [doc1171]  b. ) May – Diarmaid |mac| Murchadha , king of 
## [doc1171]               Ascall |mac| Ragnaill ( or Torcai
## [doc1345]                 Aedh |mac| Tairdelbach Ó Concho
## [doc1403]          Maolmhordha |mac| Con Connacht succeed
dsst_kwic(anno, terms = "ibn")
## [doc0673] f Tang Dynasty Ziyad |ibn| Abi Sufyan , Muslim 
## [doc0711] 0 men ) led by Tariq |ibn| Ziyad land at Gibral
## [doc0744]                Salih |ibn| Tarif proclaims hims
## [doc0748]              Qahtaba |ibn| Shabib al - Ta 'i ta
## [doc0761] om ' Abd al - Rahman |ibn| Rustam of Rustamid d
## [doc0766] eman ( b. ) Muhammad |ibn| al -Ash'ath al - Khu
## [doc0783]  of Tang Dynasty Isa |ibn| Musa , Muslim govern
## [doc0872]              Ibrahim |ibn| Ya' qub al - Juzajan
## [doc0885]             Sulayman |ibn| Wahb , Muslim offici
## [doc0898] oximate date ) Ahmad |ibn| Isa al - Shaybani , 
## [doc0936] ign against Muhammad |ibn| Ra'iq , rebellious g
## [doc0939]                  Ali |ibn| Babawayh Qummi , Twe
## [doc1011]        Abu Ali Hasan |ibn| Ustadh - Hurmuz , Bu
## [doc1105] moravid emir , Yusuf |ibn| Tashfin , sends a ma
## [doc1161]  September – Tala 'i |ibn| Ruzzik , Fatimid viz
## [doc1171] l - Hasan al - Hasan |ibn| Ali , Zirid ruler ( 
## [doc1242] hop April – Abubakar |ibn| Gussom , Arab poet (
## [doc1491]                 Musa |ibn| Abi al - Ghassan , k
## [doc1559] inst invasion of Nur |ibn| Mujahid , Sultan of 
## [doc1910] mber – Abd al - Aziz |ibn| Baz , Grand Mufti of
dsst_kwic(anno, terms = "chancellor", n = 2000000)
## [doc0110] Chinese official and |chancellor| ( d. ) Duan Xi , Chi
## [doc0129] , Chinese official , |chancellor| ( d. ) Galen , Greek
## [doc0163]  Changxu ) , Chinese |chancellor| ( d. ) Tiberius Clau
## [doc0168]  ) Gu Yong , Chinese |chancellor| ( d. ) Li Tong , Chi
## [doc0181] huge Liang , Chinese |chancellor| and regent ( d. ) Ae
## [doc0219] ficial , adviser and |chancellor| ( b.                
## [doc0225] Chinese official and |chancellor| ( b. ) Xiahou Shang 
## [doc0236] Chinese official and |chancellor| ( d. ) Zhou Chu , Ch
## [doc0250]  Chinese general and |chancellor| ( b. )              
## [doc0264] Chinese official and |chancellor| Zong Yu ( or Deyan )
## [doc0272]         Yu , Chinese |chancellor| and politician      
## [doc0280] r Juxian ) , Chinese |chancellor|
## [doc0318] Chinese official and |chancellor| Liu Can ( or Shiguan
## [doc0568]          Feng Deyi , |chancellor| of Tang Dynasty ( d.
## [doc0570] mate date ) Pei Ji , |chancellor| of Tang Dynasty ( d.
## [doc0571] i Jing , general and |chancellor| of Tang dynasty ( d.
## [doc0575] e date ) Wen Yanbo , |chancellor| of Tang Dynasty ( d.
## [doc0576] date ) Gao Shilian , |chancellor| of Tang Dynasty ( d.
## [doc0579]      Fang Xuanling , |chancellor| of Tang Dynasty ( d.
## [doc0580] e date ) Wei Zheng , |chancellor| of Tang dynasty ( d.
## [doc0585]           Du Ruhui , |chancellor| of Tang Dynasty ( d.
## [doc0587]    Zhang Xingcheng , |chancellor| of Tang Dynasty ( d.
## [doc0588]  date ) Yu Zhining , |chancellor| of Tang dynasty ( d.
## [doc0592] ( d. ) Xu Jingzong , |chancellor| of Tang Dynasty ( d.
## [doc0594]  Shiji , general and |chancellor| of Tang Dynasty ( d.
## [doc0595]  ( d. ) Cen Wenben , |chancellor| and editor of Book o
## [doc0596] nk ( d. ) Gao Jifu , |chancellor| of Tang Dynasty ( d.
## [doc0597]       Chu Suiliang , |chancellor| of Tang dynasty ( d.
## [doc0601] sty ( d. ) Ma Zhou , |chancellor| of Tang Dynasty ( d.
## [doc0606]  Muhammad Han Yuan , |chancellor| of Tang Dynasty ( d.
## [doc0614] ate date ) Li Yifu , |chancellor| of Tang dynasty ( d.
## [doc0618] ror of Qin Dou Wei , |chancellor| of Tang dynasty Fíng
## [doc0619] ( b. ) Liu Wenjing , |chancellor| of Tang dynasty ( b.
## [doc0627]          Feng Deyi , |chancellor| of Tang dynasty ( b.
## [doc0628]  father and Du Yan , |chancellor| of Tang dynasty Kava
## [doc0629] n Abi Talib Pei Ji , |chancellor| of Tang dynasty ( b.
## [doc0630] e date ) Di Renjie , |chancellor| of Tang Dynasty ( d.
## [doc0630] an Empire Du Ruhui , |chancellor| of Tang Dynasty ( b.
## [doc0633] te date ) Dai Zhou , |chancellor| of Tang Dynasty outp
## [doc0635] n Shuda , prince and |chancellor| of Tang Dynasty Gart
## [doc0637]          Wen Yanbo , |chancellor| of Tang Dynasty ( b.
## [doc0639]           Wang Gui , |chancellor| of Tang dynasty ( b.
## [doc0642]        Yuwen Shiji , |chancellor| of Tang dynasty Bede
## [doc0643]          Hou Junji , |chancellor| of Tang Dynasty Sept
## [doc0644] f Palenque Li Jiao , |chancellor| of Tang Dynasty ( d.
## [doc0645]         Cen Wenben , |chancellor| and editor of Book o
## [doc0645]         Cen Wenben , |chancellor| and editor of Book o
## [doc0646]   January – Liu Ji , |chancellor| of Tang Dynasty unkn
## [doc0647]        Gao Shilian , |chancellor| of Tang Dynasty ( b.
## [doc0647]        Yang Shidao , |chancellor| of Tang Dynasty     
## [doc0648]   It chief editor is |chancellor| Fang Xuanling , who 
## [doc0648]        [ ] Ma Zhou , |chancellor| of Tang dynasty ( b.
## [doc0648]      Fang Xuanling , |chancellor| of Tang dynasty ( b.
## [doc0649]  Chinese general and |chancellor| of Tang dynasty ( b.
## [doc0649]  Chinese general and |chancellor| of Tang dynasty ( d.
## [doc0650]          Yao Chong , |chancellor| of Tang Dynasty ( d.
## [doc0653]    Zhang Xingcheng , |chancellor| of Tang Dynasty ( b.
## [doc0654] January – Gao Jifu , |chancellor| of Tang Dynasty ( b.
## [doc0656] s kidnapped by court |chancellor| , Grimoald Elder , w
## [doc0658] ( or ) Du Zhenglun , |chancellor| of Tang Dynasty Erch
## [doc0658] eland Chu Suiliang , |chancellor| of Tang Dynasty ( b.
## [doc0659]           Han Yuan , |chancellor| of Tang dynasty ( b.
## [doc0659] ch of East Liu Shi , |chancellor| of Tang dynasty Zhan
## [doc0660] ate ) Xin Maojiang , |chancellor| of Tang Dynasty outp
## [doc0663] t ( d. ) Song Jing , |chancellor| of Tang Dynasty ( d.
## [doc0665]         Yu Zhining , |chancellor| of Tang Dynasty ( b.
## [doc0669]  Shiji , general and |chancellor| of Tang Dynasty ( b.
## [doc0672] igoths Xu Jingzong , |chancellor| of Tang Dynasty ( b.
## [doc0673]      Zhang Jiuling , |chancellor| of Tang Dynasty ( d.
## [doc0675]  date ) Niu Xianke , |chancellor| of Tang dynasty ( d.
## [doc0676] ustrasia Le Yanwei , |chancellor| of Tang Dynasty Mang
## [doc0678] iuli Zhang Wenguan , |chancellor| of Tang dynasty ( b.
## [doc0679]  scholar Dai Zhide , |chancellor| of Tang Dynasty Sige
## [doc0681] ( d. ) Pei Yaoqing , |chancellor| of Tang Dynasty ( d.
## [doc0682]        Li Jingxuan , |chancellor| of Tang Dynasty ( b.
## [doc0684]            Pei Yan , |chancellor| of Tang Dynasty Phil
## [doc0685] of Kent Liu Rengui , |chancellor| of Tang Dynasty ( b.
## [doc0685]  d. ) Miao Jinqing , |chancellor| of Tang Dynasty ( d.
## [doc0687]  ( d. ) Wei Jiansu , |chancellor| of Tang dynasty ( d.
## [doc0697]          Fang Guan , |chancellor| of Tang Dynasty ( d.
## [doc0705] tat organized by her |chancellor| Zhang Jianzhi , afte
## [doc0709] ( d. ) Du Hongjian , |chancellor| of Tang Dynasty ( d.
## [doc0713]            Li Jiao , |chancellor| of Tang Dynasty ( b.
## [doc0714]          Ne de facto |chancellor| and commissions him 
## [doc0719]            Guan Bo , |chancellor| of Tang Dynasty ( d.
## [doc0721] n Empire Yao Chong , |chancellor| of Tang Dynasty ( b.
## [doc0727] al ( d. ) Yang Yan , |chancellor| of Tang Dynasty ( d.
## [doc0728] d. ) Du Huangchang , |chancellor| of Tang Dynasty ( or
## [doc0729]      Du Huangchang , |chancellor| of Tang Dynasty ( or
## [doc0730] usurper Yuwen Rong , |chancellor| of Tang Dynasty ( or
## [doc0730]          Zhang Yue , |chancellor| of Tang Dynasty ( b.
## [doc0731] eustria Yuwen Rong , |chancellor| of Tang Dynasty ( or
## [doc0731] eustria Yuwen Rong , |chancellor| of Tang Dynasty ( or
## [doc0733]        Li Yuanhong , |chancellor| of Tang Dynasty Mild
## [doc0735]                You , |chancellor| of Tang Dynasty ( d.
## [doc0739]             Lu Mai , |chancellor| of Tang Dynasty ( d.
## [doc0740]      Zhang Jiuling , |chancellor| of Tang Dynasty ( b.
## [doc0740] te date ) Gao Ying , |chancellor| of Tang Dynasty ( d.
## [doc0742] ( d . ) Liu Congyi , |chancellor| of Tang Dynasty ( d.
## [doc0742]         Chrodegang , |chancellor| of Charles Martel , 
## [doc0742]  date ) Niu Xianke , |chancellor| of Tang Dynasty ( b.
## [doc0743] vernor Pei Yaoqing , |chancellor| of Tang dynasty ( b.
## [doc0746] ( d. ) Zhao Zongru , |chancellor| of Tang Dynasty ( d.
## [doc0747] sh abbot Li Shizhi , |chancellor| and poet of Tang Dyn
## [doc0752]          Zheng Yin , |chancellor| of Tang dynasty ( d.
## [doc0753]           Li Linfu , |chancellor| of Tang Dynasty Seva
## [doc0754] ia ( b. ) Li Linfu , |chancellor| of Tang dynasty Rhod
## [doc0754] ange ( d. ) Li Fan , |chancellor| of Tang dynasty ( d.
## [doc0756]      Yang Guozhong , |chancellor| of Tang Dynasty     
## [doc0756] r ( d. ) Li Yijian , |chancellor| of Tang Dynasty ( d.
## [doc0756] ountain passes , but |chancellor| Yang Guozhong gives 
## [doc0758] ( d. ) Wu Yuanheng , |chancellor| of Tang Dynasty ( d.
## [doc0758] ) ( d. ) Li Fengji , |chancellor| of Tang Dynasty ( d.
## [doc0758]         Chen Xilie , |chancellor| of Tang Dynasty Swit
## [doc0759] e ( d. ) Quan Deyu , |chancellor| of Tang Dynasty ( d.
## [doc0760] ei Guanzhi , Chinese |chancellor| ( d. ) Zhang Hongjin
## [doc0763] ) state Wei Jiansu , |chancellor| of Tang Dynasty ( b.
## [doc0763] of Picts Fang Guan , |chancellor| of Tang Dynasty ( b.
## [doc0764] an ( d. ) Li Jiang , |chancellor| of Tang Dynasty ( d.
## [doc0765]       Miao Jinqing , |chancellor| of Tang Dynasty ( b.
## [doc0765] asty ( d. ) Pei Du , |chancellor| of Tang Dynasty ( d.
## [doc0766]           Li Cheng , |chancellor| of Tang Dynasty Zhan
## [doc0769] January – Cui Huan , |chancellor| of Tang Dynasty Marc
## [doc0769]        Du Yuanying , |chancellor| of Tang Dynasty ( d.
## [doc0772]            Cui Qun , |chancellor| of Tang Dynasty ( d.
## [doc0773]      Duan Wenchang , |chancellor| of Tang Dynasty ( d.
## [doc0773]  ( d. ) Wei Chuhou , |chancellor| of Tang Dynasty ( d.
## [doc0776]             Lu Sui , |chancellor| of Tang Dynasty ( d.
## [doc0781] an ( b. ) Yang Yan , |chancellor| of Tang Dynasty ( b.
## [doc0784]             Li Jue , |chancellor| of Tang Dynasty ( ap
## [doc0785]         Liu Congyi , |chancellor| of Tang Dynasty ( b.
## [doc0787] ate date ) Li Deyu , |chancellor| of Tang Dynasty ( d.
## [doc0789]           Lu Shang , |chancellor| of Tang Dynasty ( d.
## [doc0791] cco ( d. ) Pei Xiu , |chancellor| of Tang Dynasty ( d 
## [doc0792]  d. ) Bai Minzhong , |chancellor| of Tang Dynasty ( d.
## [doc0793] mate date ) Wei Mo , |chancellor| of Tang Dynasty ( d.
## [doc0794] man ( or ) Du Cong , |chancellor| of Tang Dynasty May 
## [doc0796]  scholar Liu Zhuan , |chancellor| of Tang Dynasty ( d.
## [doc0797] outh Brega Guan Bo , |chancellor| of Tang Dynasty ( b.
## [doc0798]             Lu Mai , |chancellor| of Tang Dynasty ( b.
## [doc0799]         Jiang Shen , |chancellor| of Tang Dynasty ( d.
## [doc0802]            Bi Xian , |chancellor| of Tang Dynasty ( d.
## [doc0807] Li Jifu is appointed |chancellor| , during reign of Em
## [doc0808] es ) Du Huangchang , |chancellor| of Tang Dynasty Eanb
## [doc0811]    July – Gao Ying , |chancellor| of Tang Dynasty ( b.
## [doc0811]             Pei Ji , |chancellor| of Tang Dynasty Pepi
## [doc0811] Charlemagne Li Fan , |chancellor| of Tang Dynasty ( b.
## [doc0812] ine scholar Du You , |chancellor| of Tang Dynasty ( b.
## [doc0814] ate date ) Li Jifu , |chancellor| of Tang Dynasty ( b.
## [doc0815] July – Wu Yuanheng , |chancellor| of Tang Dynasty ( b.
## [doc0815] u Yuanheng , Chinese |chancellor| of Tang Dynasty , is
## [doc0818] k ( or ) Quan Deyu , |chancellor| of Tang Dynasty ( b.
## [doc0819]           Cheng Yi , |chancellor| of Tang Dynasty Hish
## [doc0820] eptember , Li Yong , |chancellor| of Tang Dynasty Dece
## [doc0820]         Huangfu Bo , |chancellor| of Tang Dynasty Lupo
## [doc0821]        Wei Guanzhi , |chancellor| of Tang dynasty ( b.
## [doc0821]       Zheng Yuqing , |chancellor| of Tang dynasty ( b.
## [doc0822] l leader Li Yijian , |chancellor| of Tang Dynasty ( b.
## [doc0824] g Hongjing , Chinese |chancellor| ( b. )              
## [doc0829] mate date ) Lu Yan , |chancellor| of Tang Dynasty ( d.
## [doc0829] overnor Wei Chuhou , |chancellor| of Tang Dynasty ( b.
## [doc0829] Uí Failghe Cui Zhi , |chancellor| of Tang Dynasty ( b.
## [doc0830] ndisfarne Li Jiang , |chancellor| of Tang Dynasty ( b.
## [doc0832]            Cui Qun , |chancellor| of Tang Dynasty ( b.
## [doc0833]          Dou Yizhi , |chancellor| of Tang Dynasty Du Y
## [doc0835] eman Duan Wenchang , |chancellor| of Tang Dynasty ( b.
## [doc0835]        Li Zhongyan , |chancellor| of Tang Dynasty Lu S
## [doc0835] ailure of emperor 's |chancellor| Li Zhongyan to subdu
## [doc0835] Chinese official and |chancellor| Vladislav , duke of 
## [doc0839] d. ) Liu Chongwang , |chancellor| of Tang Dynasty ( d.
## [doc0839] ng of Ulaid Pei Du , |chancellor| of Tang Dynasty ( b.
## [doc0841] date ) Du Rangneng , |chancellor| of Tang Dynasty ( d.
## [doc0842]           Li Cheng , |chancellor| of Tang Dynasty Liu 
## [doc0842]  March – Xiao Mian , |chancellor| of Tang Dynasty Augu
## [doc0844] imania Chen Yixing , |chancellor| of Tang Dynasty Ekke
## [doc0846]     July – Li Shen , |chancellor| of Tang Dynasty Bai 
## [doc0846]  ( b. ) Li Zongmin , |chancellor| of Tang Dynasty Mojm
## [doc0847] nasty ( d. ) Lu Yi , |chancellor| of Tang Dynasty ( d.
## [doc0847] d vizier Li Rangyi , |chancellor| of Tang Dynasty Theo
## [doc0848] ( or ) Cui Yuanshi , |chancellor| of Tang Dynasty Dres
## [doc0850] rtyr July – Wei Fu , |chancellor| of Tang Dynasty Amal
## [doc0851] te date ) Zhou Chi , |chancellor| of Tang Dynasty ( b.
## [doc0852] and prefect Li Jue , |chancellor| of Tang Dynasty Pres
## [doc0854] lwg ( d. ) Cui Yin , |chancellor| of Tang Dynasty ( d.
## [doc0857] ( Ireland ) Ma Zhi , |chancellor| of Tang Dynasty Muns
## [doc0857]  jurist Zheng Lang , |chancellor| of Tang Dynasty Ziry
## [doc0858] and poet Liu Zhuan , |chancellor| of Tang Dynasty ( b.
## [doc0858] rch of East Wei Mo , |chancellor| of Tang Dynasty ( b.
## [doc0859] te date ) Lu Shang , |chancellor| of Tang Dynasty ( b.
## [doc0861] ate ) Bai Minzhong , |chancellor| of Tang Dynasty ( b.
## [doc0862] ) ( d. ) Xiao Qing , |chancellor| of Later Liang ( d. 
## [doc0863]          Shen Song , |chancellor| of Wuyue ( d. ) Wang
## [doc0864] h nobleman Bi Xian , |chancellor| of Tang Dynasty ( b.
## [doc0864]            Pei Xiu , |chancellor| of Tang Dynasty ( b.
## [doc0865] ddhist monk Gao Qu , |chancellor| of Tang Dynasty Kass
## [doc0865] rchbishop Xiao Zhi , |chancellor| of Tang Dynasty Yahy
## [doc0866]             Yao Yi , |chancellor| of Later Tang ( d. )
## [doc0868]  Chinese officer and |chancellor| ( d. )              
## [doc0868] of Trier Yang Shou , |chancellor| of Tang Dynasty Yu X
## [doc0870] ng Dingbao , Chinese |chancellor| ( d. ) Zhu Yanshou ,
## [doc0871] imate date ) Li Qi , |chancellor| of Later Liang ( d. 
## [doc0873] bleman Wei Baoheng , |chancellor| of Tang Dynasty     
## [doc0873] d polymath Du Cong , |chancellor| of Tang Dynasty ( b.
## [doc0874] ty ( b. ) Liu Zhan , |chancellor| of Tang Dynasty Lu Y
## [doc0875]  scholar Xiao Fang , |chancellor| of Tang Dynasty ( b.
## [doc0876] ) Lu Wenji , Chinese |chancellor| ( d. ) Toda , queen 
## [doc0877] Pi Guangye , Chinese |chancellor| ( d. ) Rudesind I , 
## [doc0879] nt of Capua Li Wei , |chancellor| of Tang Dynasty Ruri
## [doc0881] of Dublin Cui Hang , |chancellor| of Tang Dynasty Davi
## [doc0881] mate date ) Liu Ye , |chancellor| of Tang Dynasty Lu G
## [doc0882] hui , Chinese Khitan |chancellor| ( d. ) Saadia Gaon ,
## [doc0882] , Chinese prince and |chancellor| ( d. )              
## [doc0882] ongda , official and |chancellor| of Wuyue ( d. )     
## [doc0883]       Zhao Jiliang , |chancellor| of Later Shu ( d. ) 
## [doc0884] te date ) Wang Duo , |chancellor| of Tang Dynasty Zhou
## [doc0884] iwara no Mototsune , |chancellor| ( kampaku ) of Japan
## [doc0884] Chinese official and |chancellor| ( d. ) January – Has
## [doc0885]  Zhao Ying , Chinese |chancellor| ( d. ) April – Metho
## [doc0887]      Zheng Changtu , |chancellor| of Tang Dynasty Zhu 
## [doc0887] an April – Pei Che , |chancellor| of Tang Dynasty July
## [doc0887] n Korea ) Xiao Gou , |chancellor| of Tang Dynasty Yant
## [doc0888] iang ( d. ) Liu Xu , |chancellor| of Later Tang and La
## [doc0891] of Serbia Wang Hui , |chancellor| of Tang Dynasty outp
## [doc0891] Chinese official and |chancellor| ( d. ) Yuan Dezhao ,
## [doc0892] Chinese official and |chancellor| ( d. )              
## [doc0892]  Chinese warlord and |chancellor| Kirschbaum , Stanisl
## [doc0893] u Rangneng , Chinese |chancellor| ( b. )              
## [doc0893] inese politician and |chancellor| ( d. ) April – Chen 
## [doc0893] Chinese official and |chancellor| ( approximate date )
## [doc0895] Chinese official and |chancellor| ( d. ) May – Qian Ku
## [doc0895]  date ) Wei Zhaodu , |chancellor| of Tang Dynasty Wulf
## [doc0895]              Li Xi , |chancellor| of Tang Dynasty Augu
## [doc0895]  date ) Lu Xisheng , |chancellor| of Tang Dynasty Mina
## [doc0896] bleman Cui Zhaowei , |chancellor| of Tang Dynasty Flan
## [doc0898]    He Ning , Chinese |chancellor| ( d. ) Hugh Great , 
## [doc0899] e warlord Zheng Qi , |chancellor| of Tang Dynasty Zoe 
## [doc0900] te ) Liu Chongwang , |chancellor| of Tang Dynasty Li Z
## [doc0900]          Wang Tuan , |chancellor| of Tang Dynasty Wulf
## [doc0901] d writer Xu Yanruo , |chancellor| of Tang Dynasty     
## [doc0902] an ( d. ) Wang Jun , |chancellor| of Later Zhou ( or )
## [doc0902] cember – Wei Yifan , |chancellor| of Tang Dynasty Æthe
## [doc0903]         Feng Yanji , |chancellor| of Southern Tang ( d
## [doc0903] dhism ( d. ) Li Gu , |chancellor| of Later Zhou ( d. )
## [doc0903] Chinese official and |chancellor| Su Jian , Chinese of
## [doc0904] e date ) Zhang Jun , |chancellor| of Tang Dynasty     
## [doc0904] lic Church Cui Yin , |chancellor| of Tang dynasty ( b.
## [doc0905]    Pei Shu , Chinese |chancellor| ( b. ) Wang Pu , Chi
## [doc0905] y Cui Yuan , Chinese |chancellor| Dugu Sun , Chinese c
## [doc0905]    Pei Shu , Chinese |chancellor| ( b. ) Wang Pu , Chi
## [doc0906]  January – Liu Can , |chancellor| of Tang Dynasty Febr
## [doc0907] orced to abdicate by |chancellor| Zhu Quanzhong .     
## [doc0907] orced to abdicate by |chancellor| Zhu Quanzhong .     
## [doc0907] orced to abdicate by |chancellor| Zhu Quanzhong .     
## [doc0908] ang Wenwei , Chinese |chancellor| May –               
## [doc0910]     Yan Xu , Chinese |chancellor| ( d. ) January – Luo
## [doc0911] mir ( d. ) Fan Zhi , |chancellor| of Song dynasty ( d.
## [doc0912] te date ) Zhang Ce , |chancellor| of Later Liang Zhu Y
## [doc0912]     May – Xue Yiju , |chancellor| of Later Liang July 
## [doc0913] d. ) March Du Xiao , |chancellor| of Later Liang Zhang
## [doc0922]  ) Wang Pu , Chinese |chancellor| and writer ( d. ) Fe
## [doc0923] iu Honggao , Chinese |chancellor| ( d. ) June – Robert
## [doc0924]         Tang bestows |chancellor| title on Gao Jixing 
## [doc0925]      Zhao Guangyin , |chancellor| of Later Tang       
## [doc0927] n Huan , general and |chancellor| of Later Tang Shin S
## [doc0927]  Ge , politician and |chancellor| of Former Shu       
## [doc0927] re August Doulu Ge , |chancellor| of Later Tang Wei Yu
## [doc0928] Chinese official and |chancellor| June – Louis Blind ,
## [doc0929] Chinese official and |chancellor| Gao Yu , Chinese chi
## [doc0930] ic October – Li Qi , |chancellor| of Later Liang ( b. 
## [doc0930]   June – Xiao Qing , |chancellor| of Later Liang ( b. 
## [doc0934]        Yun , Chinese |chancellor| ( approximate date )
## [doc0935] Chinese official and |chancellor| Zhao Feng , Chinese 
## [doc0935] Chinese official and |chancellor| November Chen Jinfen
## [doc0936] Xu Ji , official and |chancellor| of Former Shu Septem
## [doc0937]       Wang Lingmou , |chancellor| of Wu December – Sie
## [doc0938]  Abbasid Shen Song , |chancellor| of Wuyue ( b. )     
## [doc0940]         Yi , Chinese |chancellor| ( b. ) November – Ab
## [doc0940] Chinese official and |chancellor|
## [doc0941] ng Dingbao , Chinese |chancellor| ( b. )              
## [doc0941] ang Yanhan , Chinese |chancellor| ( b. ) February – Wu
## [doc0941] Chinese official and |chancellor|
## [doc0943] March – Pi Guangye , |chancellor| of Wuyue ( b. )     
## [doc0943]  Chinese officer and |chancellor| ( b. )              
## [doc0943]        Liu Honggao , |chancellor| of Southern Han ( b.
## [doc0943] ongda , official and |chancellor| of Wuyue ( b. )     
## [doc0944]  Hongchang , Chinese |chancellor| Mahipala I , Gurjara
## [doc0944] Chinese official and |chancellor| April –             
## [doc0945]  Chinese general and |chancellor| Yang Sigong , Chines
## [doc0946] nians Zhao Jiliang , |chancellor| of Later Shu ( b. ) 
## [doc0947] nd governor Liu Xu , |chancellor| of Later Tang and La
## [doc0948] Chinese official and |chancellor| Al - Qasim Guennoun 
## [doc0948]  Chinese general and |chancellor| November –          
## [doc0949] a , a politician and |chancellor| ( kampaku ) , dies a
## [doc0950] l Yang Bin , Chinese |chancellor| Shi Hongzhao , Chine
## [doc0951]  Zhao Ying , Chinese |chancellor| ( b. )              
## [doc0951] Chinese official and |chancellor| January –           
## [doc0951] Chinese official and |chancellor| Liu Chengyou , emper
## [doc0951] – Lu Wenji , Chinese |chancellor| ( b. )              
## [doc0952] Chinese official and |chancellor| Mansur ibn Qara-Tegi
## [doc0952] Chinese official and |chancellor| Mansur ibn Qara -Teg
## [doc0953] , Chinese singer and |chancellor| Abas I , king of Bag
## [doc0953] Chinese official and |chancellor| Muhammad bin Musafir
## [doc0953] Chinese official and |chancellor| Muhammad bin Musafir
## [doc0954] , Chinese prince and |chancellor| ( b. ) September – L
## [doc0955] Chinese official and |chancellor| ( b. )              
## [doc0956]  Sun Sheng , Chinese |chancellor| December – Wulfstan 
## [doc0956] – Su Yugui , Chinese |chancellor| ( b. )              
## [doc0959] hui , Chinese Khitan |chancellor| ( b. )              
## [doc0960]     August – Li Gu , |chancellor| of Later Zhou ( b. )
## [doc0960]         Feng Yanji , |chancellor| of Southern Tang ( b
## [doc0961] Zhun , Chinese Grand |chancellor| ( approximate date )
## [doc0961] nce Li Tao , Chinese |chancellor| ( approximate date )
## [doc0962] ang Qinruo , Chinese |chancellor| ( approximate date )
## [doc0964]            Fan Zhi , |chancellor| of Song Dynasty Dece
## [doc0965] l Wu Cheng , Chinese |chancellor| ( b. )              
## [doc0965]     Li Hao , Chinese |chancellor| ( approximate date )
## [doc0966]     Ding Wei , grand |chancellor| of Song Dynasty ( d.
## [doc0967] mir Yan Xu , Chinese |chancellor| ( b. )              
## [doc0968] uan Dezhao , Chinese |chancellor| ( b. ) April – Abu F
## [doc0969] Chinese official and |chancellor| of Tang dynasty ( b.
## [doc0971] ecretary Willigis as |chancellor| ( guardian of empero
## [doc0978] Zeng , Chinese grand |chancellor| ( approximate date )
## [doc0982]  ) Wang Pu , Chinese |chancellor| ( b. )              
## [doc0983] election of imperial |chancellor| and appoints John XI
## [doc0988] et ( d . ) Pang Ji , |chancellor| of Song Dynasty ( d 
## [doc0989] ber – Fan Zhongyan , |chancellor| of Song Dynasty ( d.
## [doc0994] ribert of Cologne as |chancellor| of Italy . [ ]      
## [doc1006]  – Wen Yanbo , grand |chancellor| ( d. ) Al - Lakhmi ,
## [doc1019] Chinese official and |chancellor| ( d . ) Wen Tong , C
## [doc1021] Wang Anshi , Chinese |chancellor| ( d . ) Eudokia Makr
## [doc1023] Zhun , Chinese grand |chancellor| November – Eilward ,
## [doc1025] ang Qinruo , Chinese |chancellor| December –          
## [doc1037] mia Ding Wei , grand |chancellor| of Song Dynasty Farr
## [doc1045]  Würzburg , imperial |chancellor| of Italy ( b. c. ) [
## [doc1052] une – Fan Zhongyan , |chancellor| of Song dynasty ( b.
## [doc1063] Chinese official and |chancellor| ( b. )              
## [doc1065]         Sima Guang , |chancellor| of Song Dynasty , he
## [doc1069] g Anshi as his chief |chancellor| .                   
## [doc1073] nshi , Chinese chief |chancellor| of Song Dynasty , cr
## [doc1084] Sima Guang , Chinese |chancellor| and historian , with
## [doc1085] Chinese official and |chancellor| ( b. )              
## [doc1086] Wang Anshi , Chinese |chancellor| ( b. )              
## [doc1090]  – Qin Hui , Chinese |chancellor| ( d. ) unknown dates
## [doc1097] anbo , Chinese grand |chancellor| ( b. )              
## [doc1097] se general and grand |chancellor| ( d . )             
## [doc1109] h monk and , becomes |chancellor| of cathedral at Laon
## [doc1137] ry – Guarin , Norman |chancellor| January –           
## [doc1147] apellanus , Scottish |chancellor| Martim Moniz , Portu
## [doc1150] , English bishop and |chancellor| Suryavarman II , rul
## [doc1152] English governor and |chancellor| Theobald II ( Great 
## [doc1154] an of low birth , to |chancellor| and his adviser .   
## [doc1162] Henricus ) , Italian |chancellor| Hugh de Morville , N
## [doc1162] ing Henry II has his |chancellor| Thomas Becket electe
## [doc1164]  Scottish bishop and |chancellor| Hodierna of Jerusale
## [doc1164]  Jun , Chinese grand |chancellor| ( b. )              
## [doc1168] du Perche , Sicilian |chancellor| , is accused of plot
## [doc1169] du Perche , Sicilian |chancellor|
## [doc1175] points William II as |chancellor| of Jerusalem and is 
## [doc1178] , English bishop and |chancellor| William of Lucca , I
## [doc1199] r as his advisor and |chancellor| .                   
## [doc1202] e Beaumont , English |chancellor| and bishop William o
## [doc1218]  Hungarian prelate , |chancellor| and bishop Theobald 
## [doc1224] Thomas I , Hungarian |chancellor| and archbishop Willi
## [doc1227]  military leader and |chancellor| ( d. ) Chomden Rigpe
## [doc1228] bishop of Csanád and |chancellor| Geoffrey I of Villeh
## [doc1236]  French nobleman and |chancellor| ( b. )              
## [doc1245] prelate , bishop and |chancellor| Diya al - Din al - M
## [doc1249] ella Vigna , Italian |chancellor| and diplomat ( d. ) 
## [doc1261] edict II , Hungarian |chancellor| , governor and archb
## [doc1262] g , English cleric , |chancellor| and bishop June –   
## [doc1273] an cleric , priest , |chancellor| and chronicler Alber
## [doc1273] ish monk , abbot and |chancellor| Robert Walerand , En
## [doc1274]  de Merton , English |chancellor| and regent , retires
## [doc1275] apanese nobleman and |chancellor| ( b. )              
## [doc1275] ,000 men led by Song |chancellor| Jia Sidao on Yangtze
## [doc1275] g , Hungarian vice - |chancellor| and bishop ( b. ) Xu
## [doc1276] rian priest , vice - |chancellor| and archbishop Ela L
## [doc1279] nthony Bek , English |chancellor| and bishop ( d. ) Ho
## [doc1279]  , French bishop and |chancellor| September – Robert K
## [doc1287] , Mongol general and |chancellor| ( b. ) Bernhard I , 
## [doc1289]  Mongol nobleman and |chancellor| February – Przemko o
## [doc1290] lish bishop , vice - |chancellor| and statesman April 
## [doc1292] , English bishop and |chancellor| ( b. ) November – Eu
## [doc1292] , English bishop and |chancellor| ( d. ) Saionji Neish
## [doc1297] er , Scottish monk , |chancellor| and bishop September
## [doc1299]  Nonancourt , French |chancellor| October – Jakuen , J
## [doc1300] obleman , knight and |chancellor| ( d. ) Dionigi di Bo
## [doc1302] ey Giffard , English |chancellor| and bishop ( b. )   
## [doc1302]  knight , lawyer and |chancellor| Raoul II of Clermont
## [doc1302]  knight , lawyer and |chancellor| Raoul II of Clermont
## [doc1313] English nobleman and |chancellor| ( d. ) August – Kogo
## [doc1313] ister , diplomat and |chancellor| Gonsalvus of Spain ,
## [doc1313] ister , diplomat and |chancellor| Gonsalvus of Spain ,
## [doc1314] , Chinese official , |chancellor| and politician ( d. 
## [doc1314] , Chinese official , |chancellor| and politician ( d. 
## [doc1315] rench politician and |chancellor| ( d. ) Raoul II of B
## [doc1315] rench politician and |chancellor| ( d. )              
## [doc1317] lish philosopher and |chancellor| ( b. ) August – Bern
## [doc1319] , English bishop and |chancellor| [ ]                 
## [doc1320]  , English judge and |chancellor| Olivier III de Cliss
## [doc1320] lt , German priest , |chancellor| and archbishop July 
## [doc1320]  , English judge and |chancellor| Olivier III de Cliss
## [doc1320] , English bishop and |chancellor| [ ]                 
## [doc1320]  , Polish bishop and |chancellor| ( b. ) March – Ayurb
## [doc1340] , English bishop and |chancellor| ( b. ) December –   
## [doc1363] mber – Jean Gerson , |chancellor| of University of Par
## [doc1380] ongwu Emperor purges |chancellor| of China , Hu Weiyon
## [doc1429] July – Jean Gerson , |chancellor| of University of Par
## [doc1437] p of Durham and lord |chancellor| of England ( b. )   
## [doc1444] artin Gouge , French |chancellor| date unknown –      
## [doc1465]  nominal sheriff and |chancellor| Johann Tetzel , Germ
## [doc1465]  nominal sheriff and |chancellor| Johann Tetzel , Germ
## [doc1498] at Council as second |chancellor| of Republic of Flore
## [doc1506]  French cardinal and |chancellor| ( d . ) February – J
## [doc1523] as Ruthall , English |chancellor| of University of Cam
## [doc1530] omley , English lord |chancellor| ( d . ) January – Ga
## [doc1535]  Niels Kaas , Danish |chancellor| ( d. ) James Melvill
## [doc1535]  Niels Kaas , Danish |chancellor| ( d. ) James Melvill
## [doc1583]  French cardinal and |chancellor| ( b . )             
## [doc1587] omley , English lord |chancellor| ( b. ) April –      
## [doc1594]  Niels Kaas , Danish |chancellor| ( b. )              
## [doc1595] dziwill , Lithuanian |chancellor| ( d . ) January – Ba
## [doc1616] on Hocher , Austrian |chancellor| ( d . ) August – Joh
## [doc1683] on Hocher , Austrian |chancellor| ( b. )              
## [doc1693] , Russian diplomat , |chancellor| of Russian Empire ( 
## [doc1711] ustrian diplomat and |chancellor| ( d. ) February – Om
## [doc1835] Methodist preacher , |chancellor| of Syracuse Universi
## [doc1871]    December – German |chancellor|
## [doc1892] Austrian statesman , |chancellor| ( d. ) Luis Trenker 
## [doc1908] Methodist preacher , |chancellor| of Syracuse Universi
## [doc1932] h law . May – German |chancellor| Heinrich Brüning is 
## [doc1932] Schleicher as German |chancellor| after he ousts Papen
## [doc1932] sible appointment as |chancellor| .                   
## [doc1932] rt Schleicher 's new |chancellor| .                   
## [doc1932] rt Schleicher 's new |chancellor| .                   
## [doc1934] an Nazis assassinate |chancellor| Engelbert Dollfuss ,
## [doc1949] uer is first federal |chancellor| .                   
## [doc1953] re-elected as German |chancellor| .                   
## [doc1953] re-elected as German |chancellor| .                   
## [doc1974] dt , West Germany 's |chancellor| , resigns .
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "doc_id", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 4) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    theme_void()

docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_pca(doc_var = "doc_id", n_dims = 2) %>%
  dsst_kmeans(n_clusters = 4) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id), by = "doc_id") %>%
  inner_join(docs_cluster, by = "doc_id", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "nobleman ] of a [ he to knight be al Mongol ii I Covid ruler by in crusader . Byzantine people III with kill IV"                                                                      
## [2] "american actor d. actress , singer player british politician b. director canadian film United Minister Nobel footballer Prime Prize President States musician producer ) ("           
## [3] "d - English de Dutch of Duke England noble spanish italian Jesuit painter Earl french Johann Flemish ( Mughal Protestant cardinal ) b. Colonial Catholic"                             
## [4] "approximate year date he calendar king emperor chinese naming prevalent denomination medieval method Roman period Births . deaths early condita urbe Consulship frequently ab Dynasty"
anno %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "doc_id") %>%
  dsst_kmeans(n_clusters = 4) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    theme_void()

anno %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "doc_id") %>%
  dsst_kmeans(n_clusters = 4) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    geom_text_repel(aes(label = substr(doc_id,4,7)), size = 2, show.legend = FALSE)

    theme_void()
## List of 97
##  $ line                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ rect                      : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ text                      :List of 11
##   ..$ family       : chr ""
##   ..$ face         : chr "plain"
##   ..$ colour       : chr "black"
##   ..$ size         : num 11
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : num 0
##   ..$ lineheight   : num 0.9
##   ..$ margin       : 'margin' num [1:4] 0points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : logi FALSE
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ title                     : NULL
##  $ aspect.ratio              : NULL
##  $ axis.title                : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.title.x              : NULL
##  $ axis.title.x.top          : NULL
##  $ axis.title.x.bottom       : NULL
##  $ axis.title.y              : NULL
##  $ axis.title.y.left         : NULL
##  $ axis.title.y.right        : NULL
##  $ axis.text                 : list()
##   ..- attr(*, "class")= chr [1:2] "element_blank" "element"
##  $ axis.text.x               : NULL
##  $ axis.text.x.top           : NULL
##  $ axis.text.x.bottom        : NULL
##  $ axis.text.y               : NULL
##  $ axis.text.y.left          : NULL
##  $ axis.text.y.right         : NULL
##  $ axis.ticks                : NULL
##  $ axis.ticks.x              : NULL
##  $ axis.ticks.x.top          : NULL
##  $ axis.ticks.x.bottom       : NULL
##  $ axis.ticks.y              : NULL
##  $ axis.ticks.y.left         : NULL
##  $ axis.ticks.y.right        : NULL
##  $ axis.ticks.length         : 'simpleUnit' num 0points
##   ..- attr(*, "unit")= int 8
##  $ axis.ticks.length.x       : NULL
##  $ axis.ticks.length.x.top   : NULL
##  $ axis.ticks.length.x.bottom: NULL
##  $ axis.ticks.length.y       : NULL
##  $ axis.ticks.length.y.left  : NULL
##  $ axis.ticks.length.y.right : NULL
##  $ axis.line                 : NULL
##  $ axis.line.x               : NULL
##  $ axis.line.x.top           : NULL
##  $ axis.line.x.bottom        : NULL
##  $ axis.line.y               : NULL
##  $ axis.line.y.left          : NULL
##  $ axis.line.y.right         : NULL
##  $ legend.background         : NULL
##  $ legend.margin             : NULL
##  $ legend.spacing            : NULL
##  $ legend.spacing.x          : NULL
##  $ legend.spacing.y          : NULL
##  $ legend.key                : NULL
##  $ legend.key.size           : 'simpleUnit' num 1.2lines
##   ..- attr(*, "unit")= int 3
##  $ legend.key.height         : NULL
##  $ legend.key.width          : NULL
##  $ legend.text               :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.text.align         : NULL
##  $ legend.title              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ legend.title.align        : NULL
##  $ legend.position           : chr "right"
##  $ legend.direction          : NULL
##  $ legend.justification      : NULL
##  $ legend.box                : NULL
##  $ legend.box.just           : NULL
##  $ legend.box.margin         : NULL
##  $ legend.box.background     : NULL
##  $ legend.box.spacing        : NULL
##  $ panel.background          : NULL
##  $ panel.border              : NULL
##  $ panel.spacing             : 'simpleUnit' num 5.5points
##   ..- attr(*, "unit")= int 8
##  $ panel.spacing.x           : NULL
##  $ panel.spacing.y           : NULL
##  $ panel.grid                : NULL
##  $ panel.grid.major          : NULL
##  $ panel.grid.minor          : NULL
##  $ panel.grid.major.x        : NULL
##  $ panel.grid.major.y        : NULL
##  $ panel.grid.minor.x        : NULL
##  $ panel.grid.minor.y        : NULL
##  $ panel.ontop               : logi FALSE
##  $ plot.background           : NULL
##  $ plot.title                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.title.position       : chr "panel"
##  $ plot.subtitle             :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : NULL
##   ..$ hjust        : num 0
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption              :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : num 1
##   ..$ vjust        : num 1
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : 'margin' num [1:4] 5.5points 0points 0points 0points
##   .. ..- attr(*, "unit")= int 8
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.caption.position     : chr "panel"
##  $ plot.tag                  :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 1.2
##   ..$ hjust        : num 0.5
##   ..$ vjust        : num 0.5
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ plot.tag.position         : chr "topleft"
##  $ plot.margin               : 'simpleUnit' num [1:4] 0lines 0lines 0lines 0lines
##   ..- attr(*, "unit")= int 3
##  $ strip.background          : NULL
##  $ strip.background.x        : NULL
##  $ strip.background.y        : NULL
##  $ strip.clip                : chr "inherit"
##  $ strip.placement           : NULL
##  $ strip.text                :List of 11
##   ..$ family       : NULL
##   ..$ face         : NULL
##   ..$ colour       : NULL
##   ..$ size         : 'rel' num 0.8
##   ..$ hjust        : NULL
##   ..$ vjust        : NULL
##   ..$ angle        : NULL
##   ..$ lineheight   : NULL
##   ..$ margin       : NULL
##   ..$ debug        : NULL
##   ..$ inherit.blank: logi TRUE
##   ..- attr(*, "class")= chr [1:2] "element_text" "element"
##  $ strip.text.x              : NULL
##  $ strip.text.x.bottom       : NULL
##  $ strip.text.x.top          : NULL
##  $ strip.text.y              : NULL
##  $ strip.text.y.left         : NULL
##  $ strip.text.y.right        : NULL
##  $ strip.switch.pad.grid     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  $ strip.switch.pad.wrap     : 'simpleUnit' num 2.75points
##   ..- attr(*, "unit")= int 8
##  - attr(*, "class")= chr [1:2] "theme" "gg"
##  - attr(*, "complete")= logi TRUE
##  - attr(*, "validate")= logi TRUE
docs_cluster <- anno %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "doc_id") %>%
  dsst_kmeans(n_clusters = 4) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id), by = "doc_id") %>%
  inner_join(docs_cluster, by = "doc_id", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "he approximate year king of date nobleman emperor I calendar or chinese Byzantine ruler entities . al display Dynasty link full ii ibn bishop be"                                            
## [2] "american actor actress d. singer , player british director United bear film canadian politician Minister States Nobel President Prize footballer Prime musician producer football songwriter"
## [3] "] a [ { in people kill Covid election center the be : right pandemic to injure \\ protest hold win ][ announce International Iraq"                                                           
## [4] "d de - English of Duke Dutch noble Earl painter b. italian England Johann ( ) spanish french Jesuit Baronet Thomas Flemish Colonial Mughal cardinal"
dsst_kwic(anno, terms = "\\\\")
## Warning in max(stringi::stri_length(unique(temp$text[temp$part == 0.5]))):
## no non-missing arguments to max; returning -Inf
## Warning in stringi::stri_pad_right(temp$text[temp$part == 0.5], nw): NAs
## introduced by coercion to integer range
## Warning: There was 1 warning in `dplyr::mutate()`.
## i In argument: `text = dplyr::if_else(...)`.
## Caused by warning in `min()`:
## ! no non-missing arguments to min; returning Inf
## Warning in max(stringi::stri_length(unique(temp$doc_id))): no non-missing
## arguments to max; returning -Inf
## Warning in stringi::stri_pad_right(temp$doc_id, nmax + 1L): NAs introduced
## by coercion to integer range
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "doc_id") %>%
  dsst_kmeans(n_clusters = 3) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    theme_void()

docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "doc_id") %>%
  dsst_kmeans(n_clusters = 3) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id), by = "doc_id") %>%
  inner_join(docs_cluster, by = "doc_id", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "year of calendar emperor Roman chinese he . entities condita urbe ab Consulship frequently display link prevalent naming denomination medieval full method king leader less"
## [2] "american d. actor , b. actress politician british - singer ( ) player bear french English director german composer canadian d film musician author Dutch"                   
## [3] "nobleman approximate he a date to king knight ] al Byzantine be of I [ ibn Covid ii no by . ruler Mongol in duke"
anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "doc_id") %>%
  dsst_kmeans(n_clusters = 4) %>%
  ggplot(aes(v1, v2, color = factor(cluster))) +
    geom_point() +
    theme_void()

docs_cluster <- anno %>%
  filter(upos %in% c("NOUN", "ADJ", "VERB")) %>%
  inner_join(select(docs, -text), by = "doc_id") %>%
  dsst_umap(doc_var = "doc_id") %>%
  dsst_kmeans(n_clusters = 4) %>%
  mutate(train_id = "train")

anno_cluster <- anno %>%
  inner_join(select(docs, doc_id), by = "doc_id") %>%
  inner_join(docs_cluster, by = "doc_id", suffix = c("_orig", ""))

dsst_metrics(anno_cluster, docs_cluster, label_var = "cluster") %>%
  filter(count > expected) %>%
  group_by(label) %>%
  slice_head(n = 25) %>%
  summarize(token = paste0(token, collapse = " ")) %>%
  getElement("token")
## [1] "d - de English of french Duke Dutch b. noble Earl painter Johann England spanish italian ( ) Jesuit Thomas Baronet Colonial Flemish John governors"                                              
## [2] "american actor actress d. singer , player director film bear canadian politician british footballer Nobel Prize Minister musician Prime producer President football songwriter comedian laureate"
## [3] "nobleman a ] knight to [ he approximate Covid be in Mongol people I date of ii kill Norman election al crusader by with pandemic"                                                                
## [4] "year he calendar emperor king chinese of . prevalent naming Roman denomination medieval method approximate date Births deaths entities Dynasty display link period condita urbe"
years <- docs_cluster %>%
  group_by(cluster) %>%
  summarize(years = paste(substr(doc_id,4,7), collapse = "|"))
print(years$years)
## [1] "1124|1141|1151|1296|1324|1325|1326|1327|1330|1331|1332|1334|1336|1338|1342|1343|1344|1348|1350|1370|1380|1395|1396|1406|1409|1410|1418|1422|1423|1424|1426|1427|1428|1430|1432|1433|1434|1435|1436|1438|1441|1443|1445|1446|1447|1448|1449|1450|1451|1452|1454|1456|1457|1458|1459|1460|1461|1462|1463|1464|1465|1466|1467|1468|1469|1470|1471|1472|1473|1474|1475|1476|1477|1478|1479|1480|1481|1482|1483|1484|1485|1486|1487|1488|1489|1490|1491|1492|1493|1494|1495|1496|1497|1498|1499|1500|1501|1502|1503|1504|1505|1506|1507|1508|1510|1511|1512|1513|1514|1515|1516|1517|1518|1519|1520|1521|1522|1523|1524|1525|1526|1527|1528|1529|1530|1531|1532|1533|1534|1535|1536|1537|1538|1539|1540|1541|1542|1543|1544|1545|1546|1547|1548|1549|1550|1551|1552|1553|1554|1556|1557|1558|1559|1560|1561|1562|1563|1564|1565|1566|1567|1568|1569|1570|1571|1572|1573|1574|1575|1576|1577|1578|1579|1580|1581|1582|1583|1584|1585|1586|1587|1588|1589|1590|1591|1592|1593|1594|1595|1596|1597|1598|1599|1600|1601|1602|1603|1604|1605|1606|1607|1608|1609|1610|1611|1612|1613|1614|1615|1616|1617|1618|1619|1620|1621|1622|1623|1624|1625|1626|1627|1628|1629|1630|1631|1632|1633|1634|1635|1636|1637|1638|1639|1640|1641|1642|1643|1644|1645|1646|1647|1648|1649|1650|1651|1652|1653|1654|1655|1656|1657|1658|1659|1660|1661|1662|1663|1664|1665|1666|1667|1668|1669|1670|1671|1672|1673|1674|1675|1676|1677|1678|1679|1680|1681|1682|1683|1684|1685|1686|1687|1688|1689|1690|1691|1692|1693|1694|1695|1696|1697|1698|1699|1700|1701|1702|1703|1704|1705|1706|1707|1708|1709|1710|1711|1712|1713|1714|1715|1716|1717|1718|1719|1720|1721|1722|1723|1724|1725|1726|1727|1728|1729|1730|1732|1733|1734|1735|1736|1737|1738|1739|1740|1741|1742|1743|1744|1745|1746|1747|1748|1749|1750|1751|1753|1754|1755|1756|1757|1758|1759|1760|1761|1762|1763|1764|1765|1766|1767|1768|1769|1770|1771|1772|1773|1779|1780|1781|1782|1783|1784|1785|1786|1787|1788|1789|1790|1791|1792|1793|1794|1795|1796|1798|1799|1800|1801|1802|1803|1804|1805|1806|1807|1808|1809|1810|1811|1812|1813|1814|1815|1816|1817|1818|1820|1821|1822|1823|1824|1825|1827|1828|1829|1830|1831|1833|1834|1840|1841|1844|1845"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2] "1752|1774|1775|1776|1777|1778|1797|1819|1826|1832|1835|1836|1837|1838|1839|1842|1843|1846|1847|1848|1849|1850|1851|1852|1853|1854|1855|1856|1857|1858|1859|1860|1861|1862|1863|1864|1865|1866|1867|1868|1869|1870|1871|1872|1873|1874|1875|1876|1877|1878|1879|1880|1881|1882|1883|1884|1885|1886|1887|1888|1889|1890|1891|1892|1893|1894|1895|1896|1897|1898|1899|1900|1901|1902|1903|1904|1905|1906|1907|1908|1909|1910|1911|1912|1913|1914|1915|1916|1917|1918|1919|1920|1921|1922|1923|1924|1925|1926|1927|1928|1929|1930|1931|1932|1933|1934|1935|1936|1937|1938|1939|1940|1941|1942|1943|1944|1945|1946|1947|1948|1949|1950|1951|1952|1953|1954|1955|1956|1957|1958|1959|1960|1961|1962|1963|1964|1965|1966|1967|1968|1969|1970|1971|1972|1973|1974|1975|1976|1977|1978|1979"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3] "0090|0150|0300|0370|0380|0450|0455|0470|0500|0510|0530|0543|0550|0560|0565|0570|0580|0585|0593|0600|0610|0612|0626|0630|0640|0650|0670|0675|0690|0694|0700|0723|0750|0760|0770|0780|0790|0800|0805|0808|0810|0815|0823|0825|0830|0840|0850|0860|0870|0875|0880|0890|0900|0920|0925|0931|0937|0938|0939|0940|0942|0946|0950|0955|0960|0961|0962|0963|0966|0967|0970|0972|0975|0977|0978|0980|0981|0983|0984|0985|0987|0988|0991|0992|0993|0994|0995|0996|0997|1000|1002|1003|1004|1005|1008|1009|1010|1012|1013|1014|1015|1016|1020|1022|1025|1026|1027|1028|1029|1030|1031|1032|1033|1034|1035|1036|1037|1038|1039|1040|1042|1046|1047|1048|1050|1052|1053|1054|1056|1057|1058|1059|1060|1061|1062|1064|1065|1066|1067|1068|1069|1070|1071|1073|1074|1075|1076|1078|1079|1080|1081|1082|1083|1085|1087|1088|1089|1090|1091|1092|1093|1094|1095|1096|1097|1098|1100|1101|1102|1103|1104|1105|1106|1107|1108|1109|1110|1111|1112|1114|1115|1118|1119|1120|1121|1123|1125|1126|1127|1128|1129|1131|1132|1133|1134|1135|1136|1137|1138|1140|1142|1143|1144|1145|1147|1148|1149|1150|1152|1153|1155|1156|1158|1160|1161|1162|1165|1166|1167|1168|1169|1170|1171|1172|1173|1174|1175|1176|1178|1179|1180|1181|1182|1183|1184|1185|1187|1188|1189|1190|1191|1193|1194|1196|1197|1198|1199|1200|1201|1202|1203|1204|1205|1206|1207|1208|1209|1210|1211|1212|1214|1215|1216|1217|1218|1219|1220|1221|1223|1224|1225|1226|1227|1228|1229|1230|1231|1232|1233|1234|1236|1237|1238|1239|1240|1242|1243|1244|1245|1246|1247|1248|1249|1250|1252|1253|1254|1255|1256|1257|1258|1261|1262|1263|1264|1266|1269|1271|1272|1273|1274|1275|1276|1277|1278|1279|1281|1282|1283|1284|1285|1286|1287|1288|1289|1290|1291|1292|1295|1297|1298|1299|1300|1301|1302|1303|1304|1305|1306|1307|1308|1309|1310|1311|1312|1313|1314|1315|1316|1317|1318|1319|1320|1321|1322|1345|1346|1354|1509|1980|1981|1982|1983|1984|1985|1986|1987|1988|1989|1990|1991|1992|1993|1994|1995|1996|1997|1998|1999|2000|2001|2002|2003|2004|2005|2006|2007|2008|2009|2010|2011|2012|2013|2014|2015|2016|2017|2018|2019|2020|2021|2022|2023"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [4] "0001|0002|0003|0004|0005|0006|0007|0008|0009|0010|0011|0012|0013|0014|0015|0016|0017|0018|0019|0020|0021|0022|0023|0024|0025|0026|0027|0028|0029|0030|0031|0032|0033|0034|0035|0036|0037|0038|0039|0040|0041|0042|0043|0044|0045|0046|0047|0048|0049|0050|0051|0052|0053|0054|0055|0056|0057|0058|0059|0060|0061|0062|0063|0064|0065|0066|0067|0068|0069|0070|0071|0072|0073|0074|0075|0076|0077|0078|0079|0080|0081|0082|0083|0084|0085|0086|0087|0088|0089|0091|0092|0093|0094|0095|0096|0097|0098|0099|0100|0101|0102|0103|0104|0105|0106|0107|0108|0109|0110|0111|0112|0113|0114|0115|0116|0117|0118|0119|0120|0121|0122|0123|0124|0125|0126|0127|0128|0129|0130|0131|0132|0133|0134|0135|0136|0137|0138|0139|0140|0141|0142|0143|0144|0145|0146|0147|0148|0149|0151|0152|0153|0154|0155|0156|0157|0158|0159|0160|0161|0162|0163|0164|0165|0166|0167|0168|0169|0170|0171|0172|0173|0174|0175|0176|0177|0178|0179|0180|0181|0182|0183|0184|0185|0186|0187|0188|0189|0190|0191|0192|0193|0194|0195|0196|0197|0198|0199|0200|0201|0202|0203|0204|0205|0206|0207|0208|0209|0210|0211|0212|0213|0214|0215|0216|0217|0218|0219|0220|0221|0222|0223|0224|0225|0226|0227|0228|0229|0230|0231|0232|0233|0234|0235|0236|0237|0238|0239|0240|0241|0242|0243|0244|0245|0246|0247|0248|0249|0250|0251|0252|0253|0254|0255|0256|0257|0258|0259|0260|0261|0262|0263|0264|0265|0266|0267|0268|0269|0270|0271|0272|0273|0274|0275|0276|0277|0278|0279|0280|0281|0282|0283|0284|0285|0286|0287|0288|0289|0290|0291|0292|0293|0294|0295|0296|0297|0298|0299|0301|0302|0303|0304|0305|0306|0307|0308|0309|0310|0311|0312|0313|0314|0315|0316|0317|0318|0319|0320|0321|0322|0323|0324|0325|0326|0327|0328|0329|0330|0331|0332|0333|0334|0335|0336|0337|0338|0339|0340|0341|0342|0343|0344|0345|0346|0347|0348|0349|0350|0351|0352|0353|0354|0355|0356|0357|0358|0359|0360|0361|0362|0363|0364|0365|0366|0367|0368|0369|0371|0372|0373|0374|0375|0376|0377|0378|0379|0381|0382|0383|0384|0385|0386|0387|0388|0389|0390|0391|0392|0393|0394|0395|0396|0397|0398|0399|0400|0401|0402|0403|0404|0405|0406|0407|0408|0409|0410|0411|0412|0413|0414|0415|0416|0417|0418|0419|0420|0421|0422|0423|0424|0425|0426|0427|0428|0429|0430|0431|0432|0433|0434|0435|0436|0437|0438|0439|0440|0441|0442|0443|0444|0445|0446|0447|0448|0449|0451|0452|0453|0454|0456|0457|0458|0459|0460|0461|0462|0463|0464|0465|0466|0467|0468|0469|0471|0472|0473|0474|0475|0476|0477|0478|0479|0480|0481|0482|0483|0484|0485|0486|0487|0488|0489|0490|0491|0492|0493|0494|0495|0496|0497|0498|0499|0501|0502|0503|0504|0505|0506|0507|0508|0509|0511|0512|0513|0514|0515|0516|0517|0518|0519|0520|0521|0522|0523|0524|0525|0526|0527|0528|0529|0531|0532|0533|0534|0535|0536|0537|0538|0539|0540|0541|0542|0544|0545|0546|0547|0548|0549|0551|0552|0553|0554|0555|0556|0557|0558|0559|0561|0562|0563|0564|0566|0567|0568|0569|0571|0572|0573|0574|0575|0576|0577|0578|0579|0581|0582|0583|0584|0586|0587|0588|0589|0590|0591|0592|0594|0595|0596|0597|0598|0599|0601|0602|0603|0604|0605|0606|0607|0608|0609|0611|0613|0614|0615|0616|0617|0618|0619|0620|0621|0622|0623|0624|0625|0627|0628|0629|0631|0632|0633|0634|0635|0636|0637|0638|0639|0641|0642|0643|0644|0645|0646|0647|0648|0649|0651|0652|0653|0654|0655|0656|0657|0658|0659|0660|0661|0662|0663|0664|0665|0666|0667|0668|0669|0671|0672|0673|0674|0676|0677|0678|0679|0680|0681|0682|0683|0684|0685|0686|0687|0688|0689|0691|0692|0693|0695|0696|0697|0698|0699|0701|0702|0703|0704|0705|0706|0707|0708|0709|0710|0711|0712|0713|0714|0715|0716|0717|0718|0719|0720|0721|0722|0724|0725|0726|0727|0728|0729|0730|0731|0732|0733|0734|0735|0736|0737|0738|0739|0740|0741|0742|0743|0744|0745|0746|0747|0748|0749|0751|0752|0753|0754|0755|0756|0757|0758|0759|0761|0762|0763|0764|0765|0766|0767|0768|0769|0771|0772|0773|0774|0775|0776|0777|0778|0779|0781|0782|0783|0784|0785|0786|0787|0788|0789|0791|0792|0793|0794|0795|0796|0797|0798|0799|0801|0802|0803|0804|0806|0807|0809|0811|0812|0813|0814|0816|0817|0818|0819|0820|0821|0822|0824|0826|0827|0828|0829|0831|0832|0833|0834|0835|0836|0837|0838|0839|0841|0842|0843|0844|0845|0846|0847|0848|0849|0851|0852|0853|0854|0855|0856|0857|0858|0859|0861|0862|0863|0864|0865|0866|0867|0868|0869|0871|0872|0873|0874|0876|0877|0878|0879|0881|0882|0883|0884|0885|0886|0887|0888|0889|0891|0892|0893|0894|0895|0896|0897|0898|0899|0901|0902|0903|0904|0905|0906|0907|0908|0909|0910|0911|0912|0913|0914|0915|0916|0917|0918|0919|0921|0922|0923|0924|0926|0927|0928|0929|0930|0932|0933|0934|0935|0936|0941|0943|0944|0945|0947|0948|0949|0951|0952|0953|0954|0956|0957|0958|0959|0964|0965|0968|0969|0971|0973|0974|0976|0979|0982|0986|0989|0990|0998|0999|1001|1006|1007|1011|1017|1018|1019|1021|1023|1024|1041|1043|1044|1045|1049|1051|1055|1063|1072|1077|1084|1086|1099|1113|1116|1117|1122|1130|1139|1146|1154|1157|1159|1163|1164|1177|1186|1192|1195|1213|1222|1235|1241|1251|1259|1260|1265|1267|1268|1270|1280|1293|1294|1323|1328|1329|1333|1335|1337|1339|1340|1341|1347|1349|1351|1352|1353|1355|1356|1357|1358|1359|1360|1361|1362|1363|1364|1365|1366|1367|1368|1369|1371|1372|1373|1374|1375|1376|1377|1378|1379|1381|1382|1383|1384|1385|1386|1387|1388|1389|1390|1391|1392|1393|1394|1397|1398|1399|1400|1401|1402|1403|1404|1405|1407|1408|1411|1412|1413|1414|1415|1416|1417|1419|1420|1421|1425|1429|1431|1437|1439|1440|1442|1444|1453|1455|1555|1731"
get <- dsst_kwic(anno, terms = "pandemic", n = 200000000000000) %>%
  substr(2,8)
## [doc0165]                    A |pandemic| breaks out in Rome ,
## [doc0256]            The great |pandemic| of Roman world strik
## [doc0541] g of a - year - long |pandemic| will devastate Europ
## [doc1348]      The Black Death |pandemic| spreads to central a
## [doc1348] n during Black Death |pandemic| .                   
## [doc1348]      The Black Death |pandemic| reaches England , [ 
## [doc1510]        The influenza |pandemic| reaches Sicily , whe
## [doc1519]              A large |pandemic| spreads from Greater
## [doc1557]        The influenza |pandemic| has spread , probabl
## [doc1558]            influenza |pandemic| .                   
## [doc1580]         An influenza |pandemic| sweeps world , start
## [doc1626]            influenza |pandemic| begins in Asia , spr
## [doc1817]    The first cholera |pandemic| originates in Bengal
## [doc1846]            – cholera |pandemic| breaks out in south 
## [doc1889]              May – – |pandemic| of influenza first r
## [doc1889]     December – The – |pandemic| of influenza first p
## [doc1894]         Third plague |pandemic| :                   
## [doc1899]  ] The 1899– cholera |pandemic| occur in Europe , As
## [doc1918]        January – flu |pandemic| :                   
## [doc1918] l as for Spanish flu |pandemic| killed 50– million p
## [doc1919] e global Spanish flu |pandemic| has ceased .        
## [doc1920] would be last global |pandemic| until swine flu pand
## [doc1920]       The HIV / AIDS |pandemic| almost certainly ori
## [doc1956]            Asian flu |pandemic| originates in China 
## [doc2009]  in world during flu |pandemic| .                   
## [doc2010] lares H1N1 influenza |pandemic| over , saying worldw
## [doc2019] mber 29. [ ] COVID - |pandemic| :                   
## [doc2019]   December – COVID - |pandemic| :                   
## [doc2019] mber 29. [ ] COVID - |pandemic| :                   
## [doc2019] cumented , preceding |pandemic| which was declared f
## [doc2020] 1. [ ] April COVID - |pandemic|
## [doc2020] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020] period . [ ] COVID - |pandemic| :                   
## [doc2020] ly . [ ] [ ] COVID - |pandemic| :                   
## [doc2020]  facing some form of |pandemic| - related movement r
## [doc2020] ed eye . [ ] COVID - |pandemic| :                   
## [doc2020]         June COVID - |pandemic| :                   
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020] rations. [ ] COVID - |pandemic| :                   
## [doc2020] 991. [ ] [ ] COVID - |pandemic| :                   
## [doc2020] ected.[ ][ ] COVID - |pandemic| :                   
## [doc2020]       July – COVID - |pandemic| :                   
## [doc2020] ] December – COVID - |pandemic| :                   
## [doc2020]    January – COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] mber.[ ] May COVID - |pandemic| :                   
## [doc2020]    January – COVID - |pandemic| :                   
## [doc2020] a. [ ] May – COVID - |pandemic| :                   
## [doc2020] period . [ ] COVID - |pandemic| :                   
## [doc2020]  handling of COVID - |pandemic| and its relationship
## [doc2020] %. [ ] March COVID - |pandemic| :                   
## [doc2020] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2020]       July – COVID - |pandemic| :                   
## [doc2020] ,848.86m.[ ] COVID - |pandemic| :                   
## [doc2020] orldwide.[ ] COVID - |pandemic| :                   
## [doc2020]        March COVID - |pandemic| :                   
## [doc2020]    September COVID - |pandemic| :                   
## [doc2020] ces. [ ] [ ] COVID - |pandemic| :                   
## [doc2020]  [ ] March – COVID - |pandemic| :                   
## [doc2020] sition . [ ] COVID - |pandemic| :                   
## [doc2020] ssor.[ ] [ ] COVID - |pandemic| :                   
## [doc2020] crash due to COVID - |pandemic| and United States tr
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020]   November – COVID - |pandemic| :                   
## [doc2020] ounced . [ ] COVID - |pandemic| :                   
## [doc2020]   December – COVID - |pandemic| :                   
## [doc2020] tory.[ ] [ ] COVID - |pandemic| :                   
## [doc2020]         June COVID - |pandemic| :                   
## [doc2020] [ ] December COVID - |pandemic| :                   
## [doc2020] n France.[ ] COVID - |pandemic| :                   
## [doc2020] ations . [ ] COVID - |pandemic| :                   
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020]   December – COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] m office.[ ] COVID - |pandemic| :                   
## [doc2020] k. [ ] March COVID - |pandemic| : India and United K
## [doc2020] c Ocean. [ ] COVID - |pandemic| :                   
## [doc2020] y defined by COVID - |pandemic| , which led to globa
## [doc2020] 17. [ ] June COVID - |pandemic| :                   
## [doc2020] nezuela. [ ] COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020]  [ ] [ ] [ ] COVID - |pandemic| :                   
## [doc2020] in 2025. [ ] COVID - |pandemic| :                   
## [doc2020] ground . [ ] COVID - |pandemic| :                   
## [doc2020] for first time since |pandemic| began , according to
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] e. [ ] April COVID - |pandemic| :                   
## [doc2020] ground . [ ] COVID - |pandemic| :                   
## [doc2020]  [ ] April – COVID - |pandemic| :                   
## [doc2020] isoners. [ ] COVID - |pandemic| :                   
## [doc2020]   November – COVID - |pandemic| :                   
## [doc2020] .[ ] [ ] [ ] COVID - |pandemic| :                   
## [doc2020] ] December – COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] ontinue. [ ] COVID - |pandemic| :                   
## [doc2020] [ ] December COVID - |pandemic| : cases are reported
## [doc2020]        March COVID - |pandemic| : Global COVID - cas
## [doc2020]  Russia. [ ] COVID - |pandemic| :                   
## [doc2020] ed eye . [ ] COVID - |pandemic| :                   
## [doc2020] [ ][ ][ ][ ] COVID - |pandemic| :                   
## [doc2020] in ballots caused by |pandemic| , defeating incumben
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]       July – COVID - |pandemic| : North Korean leade
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] onflict. [ ] COVID - |pandemic| :                   
## [doc2020] lations. [ ] COVID - |pandemic| :                   
## [doc2020] k City . [ ] COVID - |pandemic| :                   
## [doc2020]  . [ ] March COVID - |pandemic| :                   
## [doc2020] g May 1. [ ] COVID - |pandemic| :                   
## [doc2020] f seats. [ ] COVID - |pandemic| :                   
## [doc2020]     August – COVID - |pandemic| : Russian President 
## [doc2020]  facing some form of |pandemic| - related movement r
## [doc2020] [ ] August – COVID - |pandemic| :                   
## [doc2020] n response to global |pandemic| , and UAE airlifts a
## [doc2020] [ ] December COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| : India and United K
## [doc2020] . [ ] June – COVID - |pandemic| :                   
## [doc2020] rations. [ ] COVID - |pandemic| :                   
## [doc2020]       June – COVID - |pandemic| :                   
## [doc2020] in ballots caused by |pandemic| , defeating incumben
## [doc2020] in 2025. [ ] COVID - |pandemic| :                   
## [doc2020] . [ ] June – COVID - |pandemic| :                   
## [doc2020] oncerns from COVID - |pandemic| in Asia. [ ]        
## [doc2020] onflict. [ ] COVID - |pandemic| :                   
## [doc2020]    October – COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] m office.[ ] COVID - |pandemic| :                   
## [doc2020] 020. [ ] May COVID - |pandemic| :                   
## [doc2020] 2. [ ] April COVID - |pandemic| :                   
## [doc2020] [ ] November COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] s. [ ] May – COVID - |pandemic| :                   
## [doc2020] n response to global |pandemic| , and UAE airlifts a
## [doc2020] me areas.[ ] COVID - |pandemic| :                   
## [doc2020]  facing some form of |pandemic| - related movement r
## [doc2020] icy Act. [ ] COVID - |pandemic| :                   
## [doc2020] .[ ] April – COVID - |pandemic| :                   
## [doc2020]     August – COVID - |pandemic| :                   
## [doc2020]   November – COVID - |pandemic| : AstraZeneca 's    
## [doc2020]  ] January – COVID - |pandemic| :                   
## [doc2020]  [ ] April – COVID - |pandemic| :                   
## [doc2020] in 2018. [ ] COVID - |pandemic| :                   
## [doc2020] ce 1623. [ ] COVID - |pandemic| : cases are reported
## [doc2020]      March – COVID - |pandemic| :                   
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020]  Russia. [ ] COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020]  handling of COVID - |pandemic| and its relationship
## [doc2020] n response to global |pandemic| , and UAE airlifts a
## [doc2020] ces. [ ] [ ] COVID - |pandemic| :                   
## [doc2020] orldwide.[ ] COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] ar park. [ ] COVID - |pandemic| :                   
## [doc2020] icy Act. [ ] COVID - |pandemic| :                   
## [doc2020]        March COVID - |pandemic| :                   
## [doc2020]  [ ] April – COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] c. [ ] April COVID - |pandemic| :                   
## [doc2020] r.[ ][ ] [ ] COVID - |pandemic| :                   
## [doc2020] molition.[ ] COVID - |pandemic| :                   
## [doc2020] xt month.[ ] COVID - |pandemic| :                   
## [doc2021]       June – COVID - |pandemic| :                   
## [doc2021] rs caused by COVID - |pandemic| , Aviva Stadium in D
## [doc2021] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2021]  ] January – COVID - |pandemic| :                   
## [doc2021] poned due to COVID - |pandemic| , is held.[ ]       
## [doc2021] nd Mars. [ ] COVID - |pandemic| :                   
## [doc2021] y defined by COVID - |pandemic| , due to emergence o
## [doc2021] rusalem. [ ] COVID - |pandemic| :                   
## [doc2021] rusalem. [ ] COVID - |pandemic| :                   
## [doc2021] poned due to COVID - |pandemic| , is held.[ ]       
## [doc2021]      March – COVID - |pandemic| :                   
## [doc2021] s. [ ] April COVID - |pandemic| :                   
## [doc2021] ] November – COVID - |pandemic| :                   
## [doc2021] ce 2003. [ ] COVID - |pandemic| :                   
## [doc2021] m. [ ] May – COVID - |pandemic| in India :          
## [doc2021] d.[ ] July – COVID - |pandemic| :                   
## [doc2021]  ] January – COVID - |pandemic| :                   
## [doc2021] tation . [ ] COVID - |pandemic| :                   
## [doc2021] r will . [ ] COVID - |pandemic| :                   
## [doc2021] ere postponed due to |pandemic| were hosted in , inc
## [doc2021]   November – COVID - |pandemic| :                   
## [doc2021] in Laos. [ ] COVID - |pandemic| :                   
## [doc2021] r will . [ ] COVID - |pandemic| :                   
## [doc2021] rs caused by COVID - |pandemic| , Aviva Stadium in D
## [doc2021] [ ] February COVID - |pandemic| :                   
## [doc2021] on including COVID - |pandemic| , climate change , a
## [doc2021] in Laos. [ ] COVID - |pandemic| :                   
## [doc2021] ] February – COVID - |pandemic| : COVAX vaccine - sh
## [doc2021] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2022]      March – COVID - |pandemic| :                   
## [doc2022]    January – COVID - |pandemic| :                   
## [doc2022]    January – COVID - |pandemic| :                   
## [doc2022]  [ ] April – COVID - |pandemic| :                   
## [doc2022] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2022] onomic recovery from |pandemic| continued , many cou
## [doc2023] to . [ ] [ ] COVID - |pandemic| :                   
## [doc2023] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2023]      January COVID - |pandemic| :
docs %>%
  filter(doc_id %in% get) %>%
  group_by(decade) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(paste0(decade, "s"), decade), y = num)) +
  geom_col()

get <- dsst_kwic(anno, terms = "pandemic", n = 200000000000000) %>%
  substr(2,8)
## [doc0165]                    A |pandemic| breaks out in Rome ,
## [doc0256]            The great |pandemic| of Roman world strik
## [doc0541] g of a - year - long |pandemic| will devastate Europ
## [doc1348]      The Black Death |pandemic| spreads to central a
## [doc1348] n during Black Death |pandemic| .                   
## [doc1348]      The Black Death |pandemic| reaches England , [ 
## [doc1510]        The influenza |pandemic| reaches Sicily , whe
## [doc1519]              A large |pandemic| spreads from Greater
## [doc1557]        The influenza |pandemic| has spread , probabl
## [doc1558]            influenza |pandemic| .                   
## [doc1580]         An influenza |pandemic| sweeps world , start
## [doc1626]            influenza |pandemic| begins in Asia , spr
## [doc1817]    The first cholera |pandemic| originates in Bengal
## [doc1846]            – cholera |pandemic| breaks out in south 
## [doc1889]              May – – |pandemic| of influenza first r
## [doc1889]     December – The – |pandemic| of influenza first p
## [doc1894]         Third plague |pandemic| :                   
## [doc1899]  ] The 1899– cholera |pandemic| occur in Europe , As
## [doc1918]        January – flu |pandemic| :                   
## [doc1918] l as for Spanish flu |pandemic| killed 50– million p
## [doc1919] e global Spanish flu |pandemic| has ceased .        
## [doc1920] would be last global |pandemic| until swine flu pand
## [doc1920]       The HIV / AIDS |pandemic| almost certainly ori
## [doc1956]            Asian flu |pandemic| originates in China 
## [doc2009]  in world during flu |pandemic| .                   
## [doc2010] lares H1N1 influenza |pandemic| over , saying worldw
## [doc2019] mber 29. [ ] COVID - |pandemic| :                   
## [doc2019]   December – COVID - |pandemic| :                   
## [doc2019] mber 29. [ ] COVID - |pandemic| :                   
## [doc2019] cumented , preceding |pandemic| which was declared f
## [doc2020] 1. [ ] April COVID - |pandemic|
## [doc2020] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020] period . [ ] COVID - |pandemic| :                   
## [doc2020] ly . [ ] [ ] COVID - |pandemic| :                   
## [doc2020]  facing some form of |pandemic| - related movement r
## [doc2020] ed eye . [ ] COVID - |pandemic| :                   
## [doc2020]         June COVID - |pandemic| :                   
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020] rations. [ ] COVID - |pandemic| :                   
## [doc2020] 991. [ ] [ ] COVID - |pandemic| :                   
## [doc2020] ected.[ ][ ] COVID - |pandemic| :                   
## [doc2020]       July – COVID - |pandemic| :                   
## [doc2020] ] December – COVID - |pandemic| :                   
## [doc2020]    January – COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] mber.[ ] May COVID - |pandemic| :                   
## [doc2020]    January – COVID - |pandemic| :                   
## [doc2020] a. [ ] May – COVID - |pandemic| :                   
## [doc2020] period . [ ] COVID - |pandemic| :                   
## [doc2020]  handling of COVID - |pandemic| and its relationship
## [doc2020] %. [ ] March COVID - |pandemic| :                   
## [doc2020] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2020]       July – COVID - |pandemic| :                   
## [doc2020] ,848.86m.[ ] COVID - |pandemic| :                   
## [doc2020] orldwide.[ ] COVID - |pandemic| :                   
## [doc2020]        March COVID - |pandemic| :                   
## [doc2020]    September COVID - |pandemic| :                   
## [doc2020] ces. [ ] [ ] COVID - |pandemic| :                   
## [doc2020]  [ ] March – COVID - |pandemic| :                   
## [doc2020] sition . [ ] COVID - |pandemic| :                   
## [doc2020] ssor.[ ] [ ] COVID - |pandemic| :                   
## [doc2020] crash due to COVID - |pandemic| and United States tr
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020]   November – COVID - |pandemic| :                   
## [doc2020] ounced . [ ] COVID - |pandemic| :                   
## [doc2020]   December – COVID - |pandemic| :                   
## [doc2020] tory.[ ] [ ] COVID - |pandemic| :                   
## [doc2020]         June COVID - |pandemic| :                   
## [doc2020] [ ] December COVID - |pandemic| :                   
## [doc2020] n France.[ ] COVID - |pandemic| :                   
## [doc2020] ations . [ ] COVID - |pandemic| :                   
## [doc2020] g ceasefire to fight |pandemic| , but military rejec
## [doc2020]   December – COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] m office.[ ] COVID - |pandemic| :                   
## [doc2020] k. [ ] March COVID - |pandemic| : India and United K
## [doc2020] c Ocean. [ ] COVID - |pandemic| :                   
## [doc2020] y defined by COVID - |pandemic| , which led to globa
## [doc2020] 17. [ ] June COVID - |pandemic| :                   
## [doc2020] nezuela. [ ] COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020]  [ ] [ ] [ ] COVID - |pandemic| :                   
## [doc2020] in 2025. [ ] COVID - |pandemic| :                   
## [doc2020] ground . [ ] COVID - |pandemic| :                   
## [doc2020] for first time since |pandemic| began , according to
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] e. [ ] April COVID - |pandemic| :                   
## [doc2020] ground . [ ] COVID - |pandemic| :                   
## [doc2020]  [ ] April – COVID - |pandemic| :                   
## [doc2020] isoners. [ ] COVID - |pandemic| :                   
## [doc2020]   November – COVID - |pandemic| :                   
## [doc2020] .[ ] [ ] [ ] COVID - |pandemic| :                   
## [doc2020] ] December – COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] ontinue. [ ] COVID - |pandemic| :                   
## [doc2020] [ ] December COVID - |pandemic| : cases are reported
## [doc2020]        March COVID - |pandemic| : Global COVID - cas
## [doc2020]  Russia. [ ] COVID - |pandemic| :                   
## [doc2020] ed eye . [ ] COVID - |pandemic| :                   
## [doc2020] [ ][ ][ ][ ] COVID - |pandemic| :                   
## [doc2020] in ballots caused by |pandemic| , defeating incumben
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020]       July – COVID - |pandemic| : North Korean leade
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] onflict. [ ] COVID - |pandemic| :                   
## [doc2020] lations. [ ] COVID - |pandemic| :                   
## [doc2020] k City . [ ] COVID - |pandemic| :                   
## [doc2020]  . [ ] March COVID - |pandemic| :                   
## [doc2020] g May 1. [ ] COVID - |pandemic| :                   
## [doc2020] f seats. [ ] COVID - |pandemic| :                   
## [doc2020]     August – COVID - |pandemic| : Russian President 
## [doc2020]  facing some form of |pandemic| - related movement r
## [doc2020] [ ] August – COVID - |pandemic| :                   
## [doc2020] n response to global |pandemic| , and UAE airlifts a
## [doc2020] [ ] December COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| : India and United K
## [doc2020] . [ ] June – COVID - |pandemic| :                   
## [doc2020] rations. [ ] COVID - |pandemic| :                   
## [doc2020]       June – COVID - |pandemic| :                   
## [doc2020] in ballots caused by |pandemic| , defeating incumben
## [doc2020] in 2025. [ ] COVID - |pandemic| :                   
## [doc2020] . [ ] June – COVID - |pandemic| :                   
## [doc2020] oncerns from COVID - |pandemic| in Asia. [ ]        
## [doc2020] onflict. [ ] COVID - |pandemic| :                   
## [doc2020]    October – COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] m office.[ ] COVID - |pandemic| :                   
## [doc2020] 020. [ ] May COVID - |pandemic| :                   
## [doc2020] 2. [ ] April COVID - |pandemic| :                   
## [doc2020] [ ] November COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] s. [ ] May – COVID - |pandemic| :                   
## [doc2020] n response to global |pandemic| , and UAE airlifts a
## [doc2020] me areas.[ ] COVID - |pandemic| :                   
## [doc2020]  facing some form of |pandemic| - related movement r
## [doc2020] icy Act. [ ] COVID - |pandemic| :                   
## [doc2020] .[ ] April – COVID - |pandemic| :                   
## [doc2020]     August – COVID - |pandemic| :                   
## [doc2020]   November – COVID - |pandemic| : AstraZeneca 's    
## [doc2020]  ] January – COVID - |pandemic| :                   
## [doc2020]  [ ] April – COVID - |pandemic| :                   
## [doc2020] in 2018. [ ] COVID - |pandemic| :                   
## [doc2020] ce 1623. [ ] COVID - |pandemic| : cases are reported
## [doc2020]      March – COVID - |pandemic| :                   
## [doc2020] ] November – COVID - |pandemic| :                   
## [doc2020]  Russia. [ ] COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020]  handling of COVID - |pandemic| and its relationship
## [doc2020] n response to global |pandemic| , and UAE airlifts a
## [doc2020] ces. [ ] [ ] COVID - |pandemic| :                   
## [doc2020] orldwide.[ ] COVID - |pandemic| :                   
## [doc2020]              COVID - |pandemic| :                   
## [doc2020] ar park. [ ] COVID - |pandemic| :                   
## [doc2020] icy Act. [ ] COVID - |pandemic| :                   
## [doc2020]        March COVID - |pandemic| :                   
## [doc2020]  [ ] April – COVID - |pandemic| :                   
## [doc2020]     December COVID - |pandemic| :                   
## [doc2020] c. [ ] April COVID - |pandemic| :                   
## [doc2020] r.[ ][ ] [ ] COVID - |pandemic| :                   
## [doc2020] molition.[ ] COVID - |pandemic| :                   
## [doc2020] xt month.[ ] COVID - |pandemic| :                   
## [doc2021]       June – COVID - |pandemic| :                   
## [doc2021] rs caused by COVID - |pandemic| , Aviva Stadium in D
## [doc2021] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2021]  ] January – COVID - |pandemic| :                   
## [doc2021] poned due to COVID - |pandemic| , is held.[ ]       
## [doc2021] nd Mars. [ ] COVID - |pandemic| :                   
## [doc2021] y defined by COVID - |pandemic| , due to emergence o
## [doc2021] rusalem. [ ] COVID - |pandemic| :                   
## [doc2021] rusalem. [ ] COVID - |pandemic| :                   
## [doc2021] poned due to COVID - |pandemic| , is held.[ ]       
## [doc2021]      March – COVID - |pandemic| :                   
## [doc2021] s. [ ] April COVID - |pandemic| :                   
## [doc2021] ] November – COVID - |pandemic| :                   
## [doc2021] ce 2003. [ ] COVID - |pandemic| :                   
## [doc2021] m. [ ] May – COVID - |pandemic| in India :          
## [doc2021] d.[ ] July – COVID - |pandemic| :                   
## [doc2021]  ] January – COVID - |pandemic| :                   
## [doc2021] tation . [ ] COVID - |pandemic| :                   
## [doc2021] r will . [ ] COVID - |pandemic| :                   
## [doc2021] ere postponed due to |pandemic| were hosted in , inc
## [doc2021]   November – COVID - |pandemic| :                   
## [doc2021] in Laos. [ ] COVID - |pandemic| :                   
## [doc2021] r will . [ ] COVID - |pandemic| :                   
## [doc2021] rs caused by COVID - |pandemic| , Aviva Stadium in D
## [doc2021] [ ] February COVID - |pandemic| :                   
## [doc2021] on including COVID - |pandemic| , climate change , a
## [doc2021] in Laos. [ ] COVID - |pandemic| :                   
## [doc2021] ] February – COVID - |pandemic| : COVAX vaccine - sh
## [doc2021] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2022]      March – COVID - |pandemic| :                   
## [doc2022]    January – COVID - |pandemic| :                   
## [doc2022]    January – COVID - |pandemic| :                   
## [doc2022]  [ ] April – COVID - |pandemic| :                   
## [doc2022] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2022] onomic recovery from |pandemic| continued , many cou
## [doc2023] to . [ ] [ ] COVID - |pandemic| :                   
## [doc2023] ed conflicts COVID - |pandemic| Portal : COVID - sto
## [doc2023]      January COVID - |pandemic| :
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col()

get <- dsst_kwic(anno, terms = "duke", n = 2000000000000) %>%
  substr(2,8)
## [doc0004] given title superior |duke | .                   
## [doc0291] ut among princes and |dukes| of Jin Dynasty .    
## [doc0307] ign , in which eight |dukes| of imperial family h
## [doc0314] Chinese governor and |duke | of Xiping ( b. )    
## [doc0333] hinese chieftain and |duke | of Liaodong ( b. )  
## [doc0390] ate date ) Gao Yun , |duke | of Xianbei state Nor
## [doc0420]             Li Xin , |duke | of Chinese state Wes
## [doc0487]  Qi ( d. ) Gao Yun , |duke | of Northern Wei ( b.
## [doc0540]  ( d. ) Garibald I , |duke | of Bavaria ( d. ) Po
## [doc0553]  Frankish - Alemanni |dukes| , brothers Lothair a
## [doc0560] m ( d. ) Tassilo I , |duke | of Bavaria ( d. ) As
## [doc0569] s appointed as first |duke | of Friuli ( approxim
## [doc0570]     Leutfred becomes |duke | of Alemannia ( moder
## [doc0584]  a Frankish invasion |dukes| have provoked , elec
## [doc0589]           Claudius , |duke | ( dux ) of Lusitania
## [doc0589] daughter of Bavarian |duke | Garibald I .        
## [doc0590]           Gisulf I , |duke | of Friuli ( Italy ) 
## [doc0590] cceeded by Agilulf , |duke | ( dux ) of Turin , w
## [doc0590]      Several Lombard |dukes| defect : Gisulf I , 
## [doc0591]         Garibald I , |duke | of Bavaria ( b. )   
## [doc0591] nd saint Faroald I , |duke | of Spoleto ( or )   
## [doc0591] on advice of Lombard |dukes| ( dux ) .           
## [doc0592] Burgundy Faroald I , |duke | of Spoleto ( Italy )
## [doc0595] ate ) Euin , Lombard |duke | of Trent ( Italy ) G
## [doc0602] ids Ariulf , Lombard |duke | of Spoleto Bayan I ,
## [doc0610]  Gisulf II , Lombard |duke | of Friuli ( approxim
## [doc0610] ceeded by Gundemar , |duke | of Narbonne , who be
## [doc0617] imate date ) Tasso , |duke | of Friuli ( Italy ) 
## [doc0617] aelic priest Kakko , |duke | of Friuli ( Italy ) 
## [doc0625] e date ) Theodo II , |duke | of Bavaria ( approxi
## [doc0626] im with Grasulf II , |duke | of Friuli ( northern
## [doc0636]   Rothari ( formerly |duke | of Brescia ) marries
## [doc0640] oatia , one of first |dukes| or princes ( Croatia
## [doc0641] rgundy ) Arechis I , |duke | of Benevento ( Italy
## [doc0641]          Arechis I , |duke | of Benevento ( north
## [doc0642] bad , patrician ( of |duke | ) of Burgundy Yeongn
## [doc0651]  ( b. ) Grasulf II , |duke | of Friuli ( approxim
## [doc0653] of Picts Theodelap , |duke | of Spoleto ( approxi
## [doc0653] ucceeds Theodelap as |duke | of Spoleto , in Cent
## [doc0662]  aid of Grimoald I , |duke | of Benevento , who h
## [doc0663] Dynasty ( d. ) Ago , |duke | of Friuli ( approxim
## [doc0666]  Abu Bakr Arnefrit , |duke | of Friuli ( Northern
## [doc0666] oints Wechtar as new |duke | of Friuli .         
## [doc0670]  Drogo , Carolingian |duke | of Champagne ( d. ) 
## [doc0674]       Poppo , king ( |duke | ) of Frisia ( d. ) S
## [doc0675] kish abbot Lupus I , |duke | of Aquitaine ( appro
## [doc0678] op Wechtar , Lombard |duke | of Friuli Zhang Weng
## [doc0678]  III Childebrand I , |duke | of Burgundy ( d. ) K
## [doc0685]          Theodbert , |duke | of Bavaria ( approxi
## [doc0688]             Alahis , |duke | of Brescia , starts 
## [doc0689] date ) Grimoald II , |duke | of Benevento ( Italy
## [doc0694] ate date ) Rodoald , |duke | of Friuli ( Italy ) 
## [doc0695] ibn Ali ( d. ) Ado , |duke | of Friuli ( Northern
## [doc0700]          Raginpert , |duke | of Turin , deposes K
## [doc0700] ther with Ansprand , |duke | of Asti , as regent 
## [doc0702]           Hedan II , |duke | of Thuringia , compl
## [doc0703] eland Thrasimund I , |duke | ( dux ) of Spoleto  
## [doc0703]         Faroald II , |duke | of Spoleto , attacks
## [doc0705] d Gisulf I , Lombard |duke | of Benevento , to wi
## [doc0706] e emperor Gisulf I , |duke | of Benevento Kallini
## [doc0708] ist and imam Drogo , |duke | of Champagne ( b. ) 
## [doc0709] ate date ) Gotfrid , |duke | of Alemannia ( appro
## [doc0710] anese poet Lupus I , |duke | of Gascony Wilfred ,
## [doc0710]            Lupus I , |duke | of Gascony , is assa
## [doc0710] abbot ( d. ) Hnabi , |duke | of Alemanni ( approx
## [doc0711]           Ansprand , |duke | of Asti , returns fr
## [doc0716] , Radbod , king ( or |duke | ) of Frisians , atta
## [doc0716] haganate Theodo II , |duke | of Bavaria ( approxi
## [doc0717] t Radbod , king ( or |duke | ) of Frisians , and 
## [doc0717]           Theobald , |duke | of Bavaria ( or ) Wi
## [doc0718]  Eudes , independent |duke | of Aquitaine , march
## [doc0719] risians Tassilo II , |duke | of Bavaria ( approxi
## [doc0719]           Theobald , |duke | of Bavaria ( or )   
## [doc0719]          Theodbert , |duke | of Bavaria ( approxi
## [doc0721]  defeated by Eudes , |duke | of Aquitaine , preve
## [doc0721]       The Visigothic |duke | Amrus of Lerida area
## [doc0723]           Adalbert , |duke | of Alsace Fachtna ma
## [doc0725] of Wessex Grimoald , |duke | of Bavaria Gwylog ap
## [doc0726] hes Grifo , Frankish |duke | and son of Charles M
## [doc0730]  Palenque Lantfrid , |duke | of Alamannia Peter ,
## [doc0732]         Romuald II , |duke | of Benevento ( Italy
## [doc0735]              Eudes , |duke | of Aquitaine ( appro
## [doc0736] e official Hugbert , |duke | of Bavaria Muiredach
## [doc0737] ther Childebrand I , |duke | of Burgundy , to bes
## [doc0737] eanwhile Maurontus , |duke | or count of Provence
## [doc0739] Saxon bishop Pemmo , |duke | of Friuli ( Italy ) 
## [doc0740]  of Wessex Gregory , |duke | of Benevento Hilderi
## [doc0741] b general Hedan II , |duke | of Thuringia ( appro
## [doc0741] ( d. ) Tassilo III , |duke | of Bavaria ( approxi
## [doc0742]           Liutfrid , |duke | of Alsace ( approxim
## [doc0743] h bishop Godescalc , |duke | of Benevento Khalid 
## [doc0744] y Ratchis ( formerly |duke | of Friuli ) as king 
## [doc0744] hich he has defeated |dukes| of Spoleto and Benev
## [doc0745]           Hunald I , |duke | of Aquitaine , retir
## [doc0745] pire Thrasimund II , |duke | of Spoleto Wilfrid ,
## [doc0746] overned by counts or |dukes| appointed by Frankis
## [doc0748]              Odilo , |duke | of Bavaria May – Gen
## [doc0751] ress Childebrand I , |duke | of Burgundy ( b. )  
## [doc0751]          Gisulf II , |duke | of Benevento ( appro
## [doc0752] holic Church Lupus , |duke | of Spoleto ( Italy )
## [doc0753]     Grifo , Frankish |duke | and illegitimate son
## [doc0753] nia Grifo , Frankish |duke | and son of Charles M
## [doc0756] ong ( b. ) Aistulf , |duke | of Friuli and king o
## [doc0757]        Tassilo III , |duke | of Bavaria , recogni
## [doc0758] ius deposes Alboin , |duke | of Spoleto ( Central
## [doc0760] s founded by Lombard |duke | Arechis II in Beneve
## [doc0760] n ( b. ) Liutprand , |duke | of Benevento ( appro
## [doc0768]            Waiofar , |duke | of Aquitaine , and h
## [doc0768] garian Empire Toto , |duke | of Nepi Waiofar , du
## [doc0769]             Hunald , |duke | of Aquitaine , is fo
## [doc0776] olt are Arechis II , |duke | of Benevento , and A
## [doc0776]  Clonfert Hrodgaud , |duke | of Friuli ( Italy ) 
## [doc0776]  Clonfert Hrodgaud , |duke | of Friuli ( Italy ) 
## [doc0778]  execution of of his |dukes| .                   
## [doc0785]          Prince ( or |duke | ) Višeslav , with su
## [doc0787] ugust – Arechis II , |duke | of Benevento Hyecho 
## [doc0787] tonomous prince ( or |duke | ) of Benevento , die
## [doc0788]  of Lombards Hnabi , |duke | of Alemanni ( approx
## [doc0788] imoald III , Lombard |duke | of Benevento , is in
## [doc0789]         Hildeprand , |duke | of Spoleto Mauregatu
## [doc0795] eptimania , Frankish |duke | ( d. ) Gregory IV , 
## [doc0796] hich Lower Pannonian |duke | Vojnomir aids him ) 
## [doc0796] ( b. ) Tassilo III , |duke | of Bavaria ( approxi
## [doc0799] Višeslav , prince or |duke | of Dalmatian Croatia
## [doc0799]               Eric , |duke | of Friuli Gerold , A
## [doc0800]            Nominoe , |duke | of Brittany ( approx
## [doc0802] of Wessex Domitian , |duke | of Carantania ( appr
## [doc0802]           Višeslav , |duke | of Croatia ( or )   
## [doc0805] e ) ( d. ) Liudolf , |duke | of Saxony ( approxim
## [doc0806] imoald III , Lombard |duke | of Benevento , dies 
## [doc0807] nk ( b. ) Widukind , |duke | of Saxony ( approxim
## [doc0810]         The Venetian |dukes| change sides again ,
## [doc0810]  he deposes turncoat |dukes| , before continuing 
## [doc0810] te prince Vojnomir , |duke | of Lower Pannonia ( 
## [doc0812] s reduced to rank of |duke | , by his Mercian ove
## [doc0815] te date ) Eberhard , |duke | of Friuli ( approxim
## [doc0818] ) García I Jiménez , |duke | of Gascony Hildebold
## [doc0819]           Ljudevit , |duke | of Slavs in Lower Pa
## [doc0819]            Cadolah , |duke | of Friuli ( Italy ) 
## [doc0820] g Dynasty Lupo III , |duke | of Gascony ( approxi
## [doc0821] rankish monk Borna , |duke | ( knez ) of Croatia 
## [doc0822]            Winiges , |duke | of Spoleto ( Italy )
## [doc0823]           Ljudevit , |duke | of Slavs in Lower Pa
## [doc0824] pan ( b. ) Adelard , |duke | of Spoleto ( Italy )
## [doc0831]            Nominoe , |duke | of Brittany , is des
## [doc0832] ar Wise , count ( or |duke | ) of Toulouse , atta
## [doc0833]  Mojmir I , Moravian |duke | , expels Prince Prib
## [doc0834] h abbot Adelchis I , |duke | of Spoleto ( Italy )
## [doc0835] ancellor Vladislav , |duke | of Croatia ( approxi
## [doc0836] burg Aznar Sánchez , |duke | of Gascony Herefrith
## [doc0838] ate date ) Ratimir , |duke | of Lower Pannonia ' 
## [doc0840] n ( b. ) Andrew II , |duke | of Naples Ansovinus 
## [doc0843] s Bald and Nominoe , |duke | of Brittany .       
## [doc0844] Poitiers Bernard I , |duke | of Septimania Chen Y
## [doc0845] rian ( b. ) Mislav , |duke | of Croatia ( approxi
## [doc0846] ld recognizes him as |duke | of Brittany .       
## [doc0848] nobleman William I , |duke | of Gascony Yahya al 
## [doc0850] s ( or ) Ranulf II , |duke | of Aquitaine ( d. ) 
## [doc0851]             Otto I , |duke | of Saxony ( approxim
## [doc0851] chis I , prince ( or |duke | ) of Benevento Sicon
## [doc0852] refers to himself as |duke | of Croats ( dux Chro
## [doc0852]                  I , |duke | of Bohemia ( approxi
## [doc0852]        – Trpimir I , |duke | ( knez ) of Croatia 
## [doc0856] to Erispoe , ruler ( |duke | ) of Brittany —this 
## [doc0857]     Erispoe , king ( |duke | ) of Brittany Harith
## [doc0857]    Erispoe , ruler ( |duke | ) of Brittany , is a
## [doc0858] ian ( d. ) Richard , |duke | of Burgundy ( approx
## [doc0860] imate date ) Guy I , |duke | of Spoleto ( approxi
## [doc0861] ng against Salomon , |duke | 'king ' of Brittany 
## [doc0864] e date ) Sergius I , |duke | of Naples Trpimir I 
## [doc0866] Aquitaine Eberhard , |duke | of Friuli Emenon , F
## [doc0867]   I declares himself |duke | ( knyaz ) of Bohemia
## [doc0867] ninsula to Salomon , |duke | ( 'king ' ) of Britt
## [doc0868]            Salomon , |duke | ( 'king ' ) of Britt
## [doc0870]  Fat ( d. ) Ebalus , |duke | of Aquitaine ( appro
## [doc0870]  III , co-regent and |duke | of Naples He Quanhao
## [doc0870]                  I , |duke | of Bohemia , makes L
## [doc0873]           Thachulf , |duke | of Thuringia August 
## [doc0874] ng Dynasty Salomon , |duke | ( 'king ' ) of Britt
## [doc0874]            Salomon , |duke | ( 'king ' ) of Britt
## [doc0875]  March – William I , |duke | of Aquitaine ( d. ) 
## [doc0875] date ) Spytihnev I , |duke | of Bohemia ( approxi
## [doc0876] h nobleman Domagoj , |duke | ( knyaz ) of Croatia
## [doc0876] e date ) Pascweten , |duke | ( 'king ' ) of Britt
## [doc0878] ish nobleman Iljko , |duke | ( knyaz ) of Croatia
## [doc0879]            Zdeslav , |duke | ( knyaz ) of Croatia
## [doc0879]  governor Suppo II , |duke | of Spoleto ( approxi
## [doc0880]  founder Lambert I , |duke | of Spoleto ( approxi
## [doc0880]   February – Bruno , |duke | of Saxony March – Ca
## [doc0880]          Lambert I , |duke | of Spoleto , dies wh
## [doc0881]            Guaifer , |duke | of Benevento John I 
## [doc0883] cian bishop Guy II , |duke | of Spoleto Han Jian 
## [doc0883]  . [ ] Burchard II , |duke | of Swabia ( or )    
## [doc0884]        Burchard II , |duke | of Swabia ( or )    
## [doc0885]       Eberhard III , |duke | of Franconia ( d. ) 
## [doc0887] chooses Ranulf II as |duke | ( or ' king ' ) of A
## [doc0888]  of Anjou Judicael , |duke | of Brittany ( or )  
## [doc0888]  d. ) Vratislaus I , |duke | of Bohemia ( approxi
## [doc0889]            Guy III , |duke | of Spoleto , defeats
## [doc0889]           Judicael , |duke | of Brittany ( or )  
## [doc0889] onstance Borivoj I , |duke | of Bohemia ( approxi
## [doc0890] ate date ) Gilbert , |duke | of Lotharingia ( or 
## [doc0890] August – Ranulf II , |duke | of Aquitaine ( b. ) 
## [doc0891] February – Guy III , |duke | of Spoleto , is crow
## [doc0892]  Summer – Poppo II , |duke | of Thuringia ( Centr
## [doc0893] am I ( Longsword ) , |duke | of Normandy ( approx
## [doc0895]      Hugh , Frankish |duke | and illegitimate son
## [doc0895]        Spytihnev I , |duke | of Bohemia , togethe
## [doc0895]             Guy IV , |duke | of Spoleto , conquer
## [doc0897]             Guy IV , |duke | of Spoleto Heahstan 
## [doc0897] her Guy IV , Lombard |duke | of Spoleto , to meet
## [doc0897] d sets himself up as |duke | .                   
## [doc0898]            Stephen , |duke | of Amalfi ( approxim
## [doc0898] anasius , bishop and |duke | of Naples Doseon , K
## [doc0900] te date ) Berthold , |duke | of Bavaria ( approxi
## [doc0901] a , probable wife of |duke | Boleslaus I of Bohem
## [doc0906] nrad Younger becomes |duke | of Franconia .      
## [doc0906] ts , to establish as |dukes| of Franconia ( moder
## [doc0907] lled , together with |dukes| , bishops and abbots
## [doc0907] ate ) Wenceslaus I , |duke | of Bohemia ( approxi
## [doc0908] al August Burchard , |duke | of Thuringia Egino ,
## [doc0910]  governor Muncimir , |duke | ( knyaz ) of Croatia
## [doc0911]    The East Frankish |dukes| elect Conrad I at Fo
## [doc0912] nunnery . [ ] German |dukes| Henry Fowler of Saxo
## [doc0912]             Otto I , |duke | of Saxony Ahmad ibn 
## [doc0912] ic II , princeps and |duke | of Spoleto ( d. ) Fr
## [doc0913] d armies of Arnulf ( |duke | of Bavaria ) , Ercha
## [doc0915] Castile Gregory IV , |duke | of Naples Jing Hao ,
## [doc0915]  abbot Spytihnev I , |duke | of Bohemia Sunyer II
## [doc0915] ( d. ) Boleslaus I , |duke | of Bohemia ( approxi
## [doc0918] wn to Henry Fowler , |duke | of Saxony .         
## [doc0918]   July – William I , |duke | of Aquitaine ( b. ) 
## [doc0919]        Burchard II , |duke | of Swabia , submits 
## [doc0920] ngia under Gilbert , |duke | of Lorraine , revolt
## [doc0921] l Arnulf I ( Bad ) , |duke | of Bavaria , in two 
## [doc0921] orthumbria Richard , |duke | of Burgundy ( b. ) W
## [doc0921] ary – Vratislaus I , |duke | of Bohemia September
## [doc0923] - in - law Rudolph , |duke | of Burgundy , as kin
## [doc0925] n ( b. ) Alberic I , |duke | of Spoleto ( approxi
## [doc0925] o I , archbishop and |duke | of Lotharingia ( d. 
## [doc0925]      [ ] Alberic I , |duke | of Spoleto , attempt
## [doc0925]           Tomislav , |duke | of Croatian duchies 
## [doc0926] pril – Burchard II , |duke | of Swabia May – Zhua
## [doc0926] ember , William II , |duke | of Aquitaine Abdalla
## [doc0928]           Tomislav , |duke | and king of Croatia 
## [doc0930]  García II Sánchez , |duke | of Gascony ( approxi
## [doc0930] man ( d. ) Liudolf , |duke | of Swabia ( approxim
## [doc0930] d . ) Boleslaus II , |duke | of Bohemia ( d. )   
## [doc0931]              Rollo , |duke | of Normandy , dies a
## [doc0932]              Rollo , |duke | of Normandy ( approx
## [doc0932] August – Richard I , |duke | of Normandy ( d. ) S
## [doc0932] ng June – Thietmar , |duke | of Saxony June –    
## [doc0933] am I ( Longsword ) , |duke | of Normandy , recogn
## [doc0935] ber – Wenceslaus I , |duke | of Bohemia October –
## [doc0937] rt of Eberhard III ( |duke | of Franconia ) and W
## [doc0937]  ( d. ) William IV , |duke | of Aquitaine ( d. ) 
## [doc0937]           Arnulf I , |duke | of Bavaria October –
## [doc0938]       Eberhard III , |duke | of Franconia , is ba
## [doc0939] on of Eberhard III , |duke | of Franconia , and o
## [doc0939] tober Eberhard III , |duke | of Franconia Gilbert
## [doc0939] ort from William I , |duke | of Normandy .       
## [doc0939] lled while Gilbert , |duke | of Lotharingia ( or 
## [doc0940] ry III ( Younger ) , |duke | of Bavaria ( approxi
## [doc0941]   Spring – Henry I , |duke | of Bavaria , plots t
## [doc0942] am I ( Longsword ) , |duke | of Normandy , is amb
## [doc0942] cember – William I , |duke | of Normandy ( b.c. )
## [doc0943] rmy led by Bertold ( |duke | of Bavaria ) defeats
## [doc0944]  ) Otto ( or Odo ) , |duke | of Burgundy ( d. )  
## [doc0946]            Henry I , |duke | of Burgundy ( d .   
## [doc0947] ovember – Berthold , |duke | of Bavaria Ce Acatl 
## [doc0948] Nordgau by Henry I , |duke | of Bavaria .        
## [doc0948] s his son Liudolf as |duke | of Swabia , consolid
## [doc0949] ecember – Herman I , |duke | of Swabia date unkno
## [doc0950]             Otto I , |duke | of Carinthia ( appro
## [doc0950]            Henry I , |duke | of Bavaria , attacks
## [doc0950]         Boleslav I , |duke | of Bohemia , signs a
## [doc0951] brothers , Henry I ( |duke | of Bavaria ) , Bruno
## [doc0951] ry II ( Wrangler ) , |duke | of Bavaria ( d. )   
## [doc0952] ember – Hugh Black , |duke | of Burgundy [ ] date
## [doc0952] n - law Conrad Red , |duke | of Lotharingia .    
## [doc0952] an II ( Wrybeard ) , |duke | of Brittany Constant
## [doc0953]   Summer – Liudolf , |duke | of Swabia , and his 
## [doc0953] yid prince Charles , |duke | of Lower Lorraine ( 
## [doc0953] t some of rebellious |dukes| receive support from
## [doc0954] poet ( d. ) Otto I , |duke | of Swabia and Bavari
## [doc0954] is ally Conrad Red , |duke | of Lorraine .       
## [doc0954] ic II , princeps and |duke | of Spoleto ( b. ) Ce
## [doc0954]  , his son Liudolf ( |duke | of Swabia ) and Conr
## [doc0955] a ) Conrad ( Red ) , |duke | of Lorraine Bulcsú ,
## [doc0956]  for installation as |duke | of Swabia .         
## [doc0956]  his uncle Bruno I ( |duke | of Lotharingia ) all
## [doc0956]  ) April – Gilbert , |duke | of Burgundy April – 
## [doc0957] ther Otto , as later |duke | of Swabia and Bavari
## [doc0957] eptember – Liudolf , |duke | of Swabia date unkno
## [doc0958] a ) probable Drogo , |duke | of Brittany [ ]     
## [doc0958]  is under control of |dukes| of Bavaria , and lay
## [doc0958] mander Mastalus II , |duke | and patrician of Ama
## [doc0958]              Drogo , |duke | of Brittany [ ]     
## [doc0958] gainst Theobald II , |duke | of Spoleto .        
## [doc0958] mander Mastalus II , |duke | and patrician of Ama
## [doc0959] o I , archbishop and |duke | ( archduke ) of Loth
## [doc0959] s margraves ( vice - |duke | ) .                 
## [doc0960] r ; and Saxon border |dukes| , who are pushing ea
## [doc0960] ard I ( Fearless ) , |duke | of Normandy , marrie
## [doc0960]          Siemomysl , |duke | of Piast Dynasty ( P
## [doc0960]        Mieszko I , a |duke | of Piast Dynasty , b
## [doc0963] pril – William III , |duke | of Aquitaine ( b. ) 
## [doc0963] noblewoman John II , |duke | of Gaeta ( Italy ) (
## [doc0964] I , count and vice - |duke | of Lower Lorraine Kh
## [doc0965] dfrey II , count and |duke | of Lower Lorraine ( 
## [doc0965] eslaus I ( Cruel ) , |duke | of Bohemia , expands
## [doc0965]               Otto , |duke | of Burgundy ( b. )  
## [doc0966]  – Mieszko I , first |duke | and prince of Poland
## [doc0966] governor Sergius I , |duke | of Amalfi ( Italy ) 
## [doc0967] eslaus I ( Cruel ) , |duke | of Bohemia ( or ) Du
## [doc0967]          Gothelo I , |duke | of Lorraine ( approx
## [doc0968] te date ) John III , |duke | of Naples ( approxim
## [doc0968]          Mieszko I , |duke | and prince of Poland
## [doc0969] illiam V ' Great ' , |duke | of Aquitaine ( d. ) 
## [doc0969] s under Marinus II , |duke | of Naples , invade B
## [doc0969]   Pandulf Ironhead , |duke | of Benevento and Cap
## [doc0970] ate date ) Otto II , |duke | of Lower Lorraine ( 
## [doc0972] eslaus I ( Cruel ) , |duke | of Bohemia ( or )   
## [doc0975] ainst Boleslaus II , |duke | of Bohemia ( approxi
## [doc0975] ate date ) Oldrich , |duke | of Bohemia ( approxi
## [doc0977] ry III ( Younger ) , |duke | of Carinthia , gets 
## [doc0977] ry II ( Wrangler ) , |duke | of Bavaria .        
## [doc0977] ( d' Outremer ) , as |duke | of Lorraine .       
## [doc0978]          Mieszko I , |duke | and prince ( de fact
## [doc0978]  his nephew Otto I , |duke | of Bavaria and Carin
## [doc0978]  May – Frederick I , |duke | of Upper Lorraine Au
## [doc0979] founded by Charles , |duke | of Lower Lorraine . 
## [doc0981] te date ) Vladivoj , |duke | of Bohemia ( approxi
## [doc0982]             Otto I , |duke | of Swabia and Bavari
## [doc0985] ler ) is restored as |duke | of Bavaria by Empres
## [doc0986]          Mieszko I , |duke | ( de facto ) ruler o
## [doc0986] rym ( or Besfrim ) , |duke | of Poland ( approxim
## [doc0989]          Henry III , |duke | of Bavaria ( b. ) Ch
## [doc0989] nage of William IV , |duke | of Aquitaine , decla
## [doc0992]  forces of Conan I , |duke | of Brittany , who is
## [doc0992] Mieszko I , prince ( |duke | ) of Polans , dies a
## [doc0992] Mieszko I , prince ( |duke | ) of Poland June – M
## [doc0993]            Charles , |duke | of Lower Lorraine , 
## [doc0993] and Urgell Charles , |duke | of Lower Lorraine ( 
## [doc0994] ruary – William IV , |duke | of Aquitaine ( b. ) 
## [doc0995] slaus II ( Pious ) , |duke | of Bohemia , storms 
## [doc0995] ry II ( Wrangler ) , |duke | of Bavaria ( b. )   
## [doc0995]     ) Frederick II , |duke | of Upper Lorraine ( 
## [doc0996] ard I ( Fearless ) , |duke | of Normandy , dies a
## [doc0996] vember – Richard I , |duke | of Normandy ( b. )  
## [doc0997] II ( de Bretagne ) , |duke | of Brittany ( d. ) B
## [doc0997]  August – Conrad I , |duke | of Swabia October – 
## [doc0999] slaus II ( Pious ) , |duke | of Bohemia February 
## [doc0999]      Odo of Rennes , |duke | and regent of Britta
## [doc1000]    June – Robert I , |duke | of Normandy ( d. ) A
## [doc1000]        Berthold II , |duke | of Carinthia ( appro
## [doc1002]  October – Henry I , |duke | of Burgundy ( b. ) N
## [doc1002]  October – Henry I , |duke | of Burgundy , dies a
## [doc1003]  Flanders Vladivoj , |duke | of Bohemia ( Czech R
## [doc1003] rad II ( Younger ) , |duke | of Carinthia ( d . )
## [doc1003] rk May – Herman II , |duke | of Swabia ( Germany 
## [doc1004]             Otto I , |duke | of Carinthia Novembe
## [doc1004] roclaims himself new |duke | .                   
## [doc1007]           Welf III , |duke | of Carinthia ( appro
## [doc1008] o II ( or Gozelo ) , |duke | of Lower Lorraine ( 
## [doc1008]         Geoffrey I , |duke | of Brittany ( b. )  
## [doc1011] ) Robert I ( Old ) , |duke | of Burgundy ( d. )  
## [doc1011] te date ) Conrad I , |duke | of Carinthia ( appro
## [doc1012] April – Herman III , |duke | of Swabia April – Æl
## [doc1012] enetian abbot Otto , |duke | of Lower Lorraine ( 
## [doc1015]        ) Herman IV , |duke | of Swabia ( approxim
## [doc1016] Casimir I Restorer , |duke | of Poland ( d. ) Aug
## [doc1020] nrad I ( or Cuno ) , |duke | of Bavaria ( approxi
## [doc1020]   Otto of Nordheim , |duke | of Bavaria ( approxi
## [doc1022] ian ( d . ) Ordulf , |duke | of Saxony ( approxim
## [doc1023] dfrey II , count and |duke | of Lower Lorraine ( 
## [doc1023] lliam VII ( Bold ) , |duke | of Aquitaine ( d. ) 
## [doc1024]  ( son of Conrad I , |duke | of Carinthia ) are i
## [doc1025] olf of Rheinfelden , |duke | of Swabia ( d . ) Si
## [doc1026]            Henry V , |duke | of Bavaria ( House o
## [doc1026]  Richard II , Good , |duke | of Normandy August –
## [doc1026]  Henry Black is made |duke | of Bavaria by his fa
## [doc1027]  Magnificent becomes |duke | of Normandy after de
## [doc1027] gust – Richard III , |duke | of Normandy ( House 
## [doc1030] ) Gerard ( Great ) , |duke | of Lorraine ( approx
## [doc1030] illiam V ( Great ) , |duke | of Aquitaine ( b. ) 
## [doc1031] ël II ( or Houel ) , |duke | of Brittany ( approx
## [doc1031] d . ) Spytihnev II , |duke | of Bohemia ( House o
## [doc1032]          Sancho VI , |duke | of Gascony Ahmad May
## [doc1033] er ( d. ) Conan II , |duke | of Brittany ( approx
## [doc1034] ich ( or Odalric ) , |duke | of Bohemia November 
## [doc1035] ld William I becomes |duke | of Normandy after hi
## [doc1035]  I ( Magnificent ) , |duke | of Normandy ( b. ) (
## [doc1037] eslaus III ( Red ) , |duke | of Bohemia Ding Wei 
## [doc1038]  Granada Herman IV , |duke | of Swabia ( House of
## [doc1039] rad II ( Younger ) , |duke | of Carinthia Septemb
## [doc1040] mate date ) John V , |duke | of Gaeta ( approxima
## [doc1040] October – Alan III , |duke | of Brittany ( b. )  
## [doc1042]          Casimir I , |duke | of Poland , succeeds
## [doc1042] y with Bretislav I , |duke | of Bohemia , at Rege
## [doc1043] acclaim Guaimar IV , |duke | of Apulia and Calabr
## [doc1044] Wladyslaw I Herman , |duke | of Poland ( d. ) Jan
## [doc1046]  bishop Gothelo II , |duke | of Lower Lorraine ( 
## [doc1047] -ès - Dunes : Norman |duke | William I secures co
## [doc1047] eptember – Otto II , |duke | of Swabia [ ] [ ]   
## [doc1048]           Adalbert , |duke | of Upper Lorraine ( 
## [doc1048] upported by Georgian |duke | Liparit IV ) , confr
## [doc1050]        Berthold II , |duke | of Swabia ( approxim
## [doc1051] rt II ( Curthose ) , |duke | of Normandy ( d. ) [
## [doc1052] onrad II ( Child ) , |duke | of Bavaria ( d . ) D
## [doc1053]    Henry becomes new |duke | of Bavaria .        
## [doc1053]           Conrad I , |duke | of Bavaria , is summ
## [doc1053] ebellious Welf III , |duke | of Carinthia .      
## [doc1055]        Bretislav I , |duke | of Bohemia January –
## [doc1057]           Otto III , |duke | of Swabia November –
## [doc1058] vember – Casimir I , |duke | of Poland ( b. ) Abd
## [doc1058]           He becomes |duke | of Poland . [ ]     
## [doc1059] itles of Guiscard as |duke | of Sicily . [ ]     
## [doc1060]      Odo I ( Red ) , |duke | of Burgundy ( d. ) [
## [doc1061] ary – Spytihnev II , |duke | of Bohemia ( b. )   
## [doc1061] ( d. ) Roger Borsa , |duke | of Apulia and Calabr
## [doc1064]  II ( or Borivoi ) , |duke | of Bohemia ( approxi
## [doc1065]  d. ) Vladislaus I , |duke | of Bohemia ( approxi
## [doc1066] ecember – Conan II , |duke | of Brittany December
## [doc1068] uil , Italo - Norman |duke | Yi Zong , emperor of
## [doc1068] er Robert Guiscard ( |duke | of Apulia and Calabr
## [doc1069] ey III ( Bearded ) , |duke | of Lower Lorraine Gy
## [doc1070] – Gerard ( Great ) , |duke | of Lorraine June – G
## [doc1071] m IX ( Troubador ) , |duke | of Aquitaine ( d. ) 
## [doc1072] Ordulf ( or Otto ) , |duke | of Saxony August – H
## [doc1072] II ( or Welfhard ) , |duke | of Bavaria ( d. ) Wu
## [doc1073] cy ( d. ) Zbigniew , |duke | of Poland ( approxim
## [doc1075] av I ( Sobeslaus ) , |duke | of Bohemia ( d. ) Sv
## [doc1075] . ) Henry IX Black , |duke | of Bavaria ( d. ) Ja
## [doc1076]   Robert I ( Old ) , |duke | of Burgundy ( b. ) A
## [doc1076] y IV ( Hunchback ) , |duke | of Lower Lorraine Ra
## [doc1077]             Hugh I , |duke | of Burgundy , suppor
## [doc1078] olf of Rheinfelden , |duke | of Swabia , near Mel
## [doc1078] mber – Berthold II , |duke | of Carinthia Novembe
## [doc1079] oints Frederick I as |duke | of Swabia at Hohenst
## [doc1079]      Odo of Rennes , |duke | and regent of Britta
## [doc1080] olf of Rheinfelden , |duke | of Swabia , near tow
## [doc1080] olf of Rheinfelden , |duke | of Swabia [ ]       
## [doc1083]   Otto of Nordheim , |duke | of Bavaria September
## [doc1084] Chancellor Hoël II , |duke | of Brittany ( House 
## [doc1085]  ( d. ) Waleran II , |duke | of Lower Lorraine ( 
## [doc1086] ust – Boleslaw III , |duke | of Poland ( d. ) Al 
## [doc1086] ber – William VIII , |duke | of Aquitaine October
## [doc1091] I ( or Warcislaw ) , |duke | of Pomerania ( appro
## [doc1092] ry – Vratislaus II , |duke | and king of Bohemia 
## [doc1092] Conrad I who becomes |duke | and not king because
## [doc1095]  ( d. ) William II , |duke | of Apulia and Calabr
## [doc1096] ch – Canute Lavard , |duke | of Schleswig ( d. ) 
## [doc1096] odfrey of Bouillon , |duke | of Lower Lorraine , 
## [doc1096] rt II ( Curthose ) , |duke | of Normandy ( a brot
## [doc1099]  I ) and Robert II , |duke | of Normandy .       
## [doc1100] osed by William IX , |duke | of Aquitaine , as bi
## [doc1100] ber – Bretislav II , |duke | of Bohemia Abu al - 
## [doc1101] rt II ( Curthose ) , |duke | of Normandy , who ha
## [doc1102] Wladyslaw I Herman , |duke | of Poland July – Alb
## [doc1102] orto Odo I ( Red ) , |duke | of Burgundy ( b. )  
## [doc1102] Wladyslaw I Herman , |duke | of Poland , dies at 
## [doc1103] t – William Adelin , |duke | of Normandy ( d. ) A
## [doc1106] w III ( Wrymouth ) , |duke | of Poland , begins a
## [doc1106] rt II ( Curthose ) , |duke | of Normandy , in Dev
## [doc1108]  Henry X ( Proud ) , |duke | of Bavaria ( d. ) Le
## [doc1108] last ruler , Álmos , |duke | of Croatia .        
## [doc1109] Svatopluk ( Lion ) , |duke | of Bohemia November 
## [doc1112] II ( Jasomirgott ) , |duke | of Austria ( d. ) He
## [doc1112] stedt , is appointed |duke | of Saxony by Emperor
## [doc1115] ber – Theodoric II , |duke | of Lorraine Abu al -
## [doc1117]       Vladislaus I , |duke | of Bohemia , abdicat
## [doc1117] Otto I ( Redhead ) , |duke | of Bavaria ( d. ) Ro
## [doc1118] ) Roger III , Norman |duke | of Apulia and Calabr
## [doc1119]  ( d. ) Matthias I , |duke | of Lorraine ( approx
## [doc1119]  October – Alan IV , |duke | of Brittany ( b. )  
## [doc1119] es William Adelin as |duke | of Normandy .       
## [doc1120]     William Adelin , |duke | and son of Henry I (
## [doc1120]  – Welf II ( Fat ) , |duke | of Bavaria ( b. ) No
## [doc1120]     William Adelin , |duke | and son of Henry I (
## [doc1122]          Henry III , |duke | of Carinthia date un
## [doc1122] ber – Berthold III , |duke | of Zähringen Decembe
## [doc1123] ecember – Henry IV , |duke | of Carinthia ( House
## [doc1125] sburg , Lothair II ( |duke | of Saxony ) is elect
## [doc1125] eslaw IV ( Curly ) , |duke | of Poland ( approxim
## [doc1125]  II ( One - Eyed ) , |duke | of Swabia .         
## [doc1125] brother Conrad III , |duke | of Franconia .      
## [doc1125] ril – Vladislaus I , |duke | of Bohemia ( b. )   
## [doc1125] eslaw IV ( Curly ) , |duke | of Poland ( approxim
## [doc1126] r – Henry IX Black , |duke | of Bavaria ( b. )   
## [doc1126]  Henry X ( Proud ) , |duke | of Bavaria to succee
## [doc1126]  ) Mieszko III Old , |duke | of Greater Poland ( 
## [doc1127] Álmos ( or Almus ) , |duke | of Hungary and Croat
## [doc1127]  William II , Norman |duke | of Apulia and Calabr
## [doc1127] oleslaw I ( Tall ) , |duke | of Wroclaw ( d. ) He
## [doc1128] oger II of Sicily as |duke | of Apulia at Beneven
## [doc1129]         Henry Lion , |duke | of Saxony and Bavari
## [doc1129] gains recognition as |duke | at Melfi from Norman
## [doc1131] ry – Canute Lavard , |duke | of Schleswig ( b. ) 
## [doc1134] rt II ( Curthose ) , |duke | of Normandy ( b. ) [
## [doc1134] h ( or Oldericus ) , |duke | of Olomouc ( d. ) Ra
## [doc1135]         Conrad III , |duke | of Franconia , gives
## [doc1135] gust – Wartislaw I , |duke | of Pomerania ( b. ) 
## [doc1137] illiam X ( Saint ) , |duke | of Aquitaine ( b. ) 
## [doc1137] onso of Capua as new |duke | .                   
## [doc1137]  [ ] Wenceslaus II , |duke | of Bohemia ( approxi
## [doc1137] illiam X ( Saint ) , |duke | of Aquitaine , dies 
## [doc1137]        Sergius VII , |duke | of Naples December –
## [doc1137] nano : Sergius VII , |duke | ( magister militum )
## [doc1137]  Henry X ( Proud ) , |duke | of Bavaria , inherit
## [doc1138]  - old Henry becomes |duke | of Sandomierz .     
## [doc1138] asimir II ( Just ) , |duke | of Poland ( d. ) Con
## [doc1138] w III ( Wrymouth ) , |duke | of Poland ( b. ) Amh
## [doc1140] Armenia Sobeslav I , |duke | of Bohemia Leo I , p
## [doc1140] m ( d . ) Simon II , |duke | of Lorraine ( approx
## [doc1142]                II as |duke | , whose half - siste
## [doc1142]   He is appointed as |duke | of Saxony , which te
## [doc1147] heir , Frederick I , |duke | of Swabia .         
## [doc1148] tember – Conan III , |duke | of Brittany ( b.    
## [doc1148] Burgundy Roger III , |duke | of Apulia and Calabr
## [doc1149] . ) Odon of Poznan , |duke | of Greater Poland ( 
## [doc1152] te date ) Roger IV , |duke | of Apulia and Calabr
## [doc1152] ick IV , who becomes |duke | of Swabia .         
## [doc1152] k I ( Barbarossa ) , |duke | of Swabia , who is c
## [doc1153] . ) Marco I Sanudo , |duke | of Archipelago ( d. 
## [doc1155] n ( d. ) Ottokar I , |duke | of Bohemia ( approxi
## [doc1158] mber – Geoffrey II , |duke | of Brittany ( d. ) A
## [doc1160] r ( d. ) Mestwin I , |duke | of Pomerania ( appro
## [doc1161]  October – Henry V , |duke | of Carinthia ( House
## [doc1161] st leader Roger IV , |duke | of Apulia and Calabr
## [doc1162] September – Odo II , |duke | of Burgundy ( b. )  
## [doc1162] uly – Ladislaus II , |duke | of Bosnia , is decla
## [doc1165]  Henry I ( Brave ) , |duke | of Brabant ( d. )   
## [doc1165]  III ( or Walram ) , |duke | of Limburg ( d. ) Wi
## [doc1166]          - Henry I , |duke | of Wislica Ahmad Yas
## [doc1166] o III ( or Eudes ) , |duke | of Burgundy ( d. ) P
## [doc1166]         Henry Lion , |duke | of Saxony , has Brun
## [doc1167]           Henry II , |duke | of Limburg ( epidemi
## [doc1167] mic ) Frederick IV , |duke | of Swabia ( epidemic
## [doc1167] ary – Frederick VI , |duke | of Swabia ( d. ) And
## [doc1167]           Henry II , |duke | of Limburg ( epidemi
## [doc1167] d son Frederick V as |duke | of Swabia , after Fr
## [doc1167] mic ) Frederick IV , |duke | of Swabia ( epidemic
## [doc1168]         Henry Lion , |duke | of Saxony , marries 
## [doc1171] Conan IV ( Young ) , |duke | of Brittany ( b. )  
## [doc1172] e ( d. ) Conrad II , |duke | of Swabia and Rothen
## [doc1172] rmally recognized as |duke | of Aquitaine .      
## [doc1173] III ( Old ) , and as |duke | of Sandomierz in Les
## [doc1173] December – Louis I , |duke | of Bavaria ( d. ) Di
## [doc1174] ry – Vladislaus II , |duke | of Bohemia ( b. ) Ma
## [doc1175] ick I ( Catholic ) , |duke | of Austria ( d. )   
## [doc1176]   May – Matthias I , |duke | of Lorraine ( b. )  
## [doc1178] Henry III ( Lion ) , |duke | of Saxony , who has 
## [doc1179]  June – Henry Lion , |duke | of Saxony , is put u
## [doc1179] ieszko III ( Old ) , |duke | of Poland , travels 
## [doc1180] nuary – Henry Lion , |duke | of Saxony , loses hi
## [doc1180] Otto I ( Redhead ) , |duke | of Bavaria .        
## [doc1180] uary – Sobeslav II , |duke | of Bohemia ( b. ) Fe
## [doc1181]         Henry Lion , |duke | of Saxony , submits 
## [doc1182] ieszko III ( Old ) , |duke | of Greater Poland , 
## [doc1185] Henry III ( Lion ) , |duke | of Saxony , returns 
## [doc1187] ur I ( or Arzhur ) , |duke | of Brittany ( d . ) 
## [doc1187] March – Boguslaw I , |duke | of Pomerania ( b. ) 
## [doc1189]  March – Frederick , |duke | of Bohemia ( House o
## [doc1190] th Count Baldwin V , |duke | of Hainaut .        
## [doc1190] ) Wladyslaw Odonic , |duke | of Greater Poland ( 
## [doc1191] tember – Conrad II , |duke | of Bohemia ( b. )   
## [doc1191] ommand of Hugh III , |duke | of Burgundy .       
## [doc1191] d . [ ] Berthold V , |duke | of Zähringen , found
## [doc1193] old V ( Virtuous ) , |duke | of Austria [ ] is ha
## [doc1193]    Mieszko Younger , |duke | of Kalisz ( House of
## [doc1194] cember – Leopold V , |duke | of Austria ( b. )   
## [doc1194] l – Odon of Poznan , |duke | of Greater Poland Ma
## [doc1198] ick I ( Catholic ) , |duke | of Austria ( b. )   
## [doc1199] ld nephew Arthur I , |duke | of Brittany .       
## [doc1201] aw of Opole , Polish |duke | and bishop ( b. ) Ap
## [doc1202] ieszko III ( Old ) , |duke | of Poland ( b. )    
## [doc1202] tter to Berthold V , |duke | of Zähringen .      
## [doc1205]  Guy I de la Roche , |duke | of Athens and Thebes
## [doc1205]  Guy I de la Roche , |duke | of Athens and Thebes
## [doc1207] ebruary – Sambor I , |duke | of Pomerania ( b. ) 
## [doc1207] Knud Valdemarsen ) , |duke | of Estonia ( d . ) E
## [doc1211] ril – Frederick II , |duke | of Austria and Styri
## [doc1211]  IV ( Tanglefoot ) , |duke | of Poland ( b. )    
## [doc1214] troops of Renaud I , |duke | of Boulogne , Ferdin
## [doc1218] o III ( or Eudes ) , |duke | of Burgundy ( b. )  
## [doc1219] ty - four Lithuanian |dukes| and nobles purported
## [doc1219]  II ( or Kasimir ) , |duke | of Pomerania - Demmi
## [doc1220] Mieszko II ( Fat ) , |duke | of Kalisz - Wielun (
## [doc1220] uary – Bogislaw II , |duke | of Pomerania ( b. ) 
## [doc1226]  III ( or Walram ) , |duke | of Limburg ( b. )   
## [doc1227] rs led by Henry IV , |duke | of Limburg , and Fre
## [doc1227]  a council of Polish |dukes| in city of Gasawa , 
## [doc1230]  I ( or de Dreux ) , |duke | of Brittany , meets 
## [doc1236] n of Angelo Sanudo , |duke | of Archipelago .    
## [doc1238] enry I ( Bearded ) , |duke | of Poland March – Aw
## [doc1238] ( d. ) Meinhard II , |duke | of Carinthia ( House
## [doc1246] Mieszko II ( Fat ) , |duke | of Kalisz - Wielun N
## [doc1246]       Frederick II , |duke | of Austria and Styri
## [doc1247] ebruary – Henry IV , |duke | of Limburg ( House o
## [doc1258] che ( Great Lord ) , |duke | of Athens , which en
## [doc1261] Henry III ( Good ) , |duke | of Brabant ( b. ) Ap
## [doc1263]  Guy I de la Roche , |duke | of Athens and Thebes
## [doc1266] enry III ( White ) , |duke | of Silesia - Wroclaw
## [doc1275] John I de la Roche , |duke | of Athens .         
## [doc1303] ppoints him as grand |duke | ( megas doux ) and c
## [doc1313]  tutelage over young |dukes| of Lower Bavaria ( H
## [doc1316] do IV ( or Eudes ) , |duke | of Burgundy . [ ] [ 
## [doc1342] , king of Sicily and |duke | of Athens ; he is cr
## [doc1363]  Philip Bold becomes |duke | of Burgundy . [ ]   
## [doc1405] cal struggle between |dukes| of Burgundy and Orlé
## [doc1414] f Habsburg ) is last |duke | to be enthroned in D
## [doc1439] - Lauenburg , German |duke | ( d .               
## [doc1467] burquerque , Spanish |duke | ( d. ) October – Gio
## [doc1477] lished by decrees of |dukes| of Burgundy , in eff
## [doc1496] Jan IV of Oswiecim , |duke | of Oswiecim         
## [doc1501]  of Masovia , Polish |duke | ( d. ) July – Cho Sh
## [doc1503] e - Neuburg , German |duke | ( d. ) November – Ip
## [doc1517] of Suffolk , English |duke | ( d. ) Antonio Scand
## [doc1517] of Suffolk , English |duke | ( d. ) Antonio Scand
## [doc1522] II de Croÿ , Belgian |duke | ( d. ) August – Udai
## [doc1526] burquerque , Spanish |duke | ( b. )              
## [doc1537] e of Osuna , Spanish |duke | ( d. ) July – Christ
## [doc1548] e - Neuburg , German |duke | ( b. )              
## [doc1551] II de Croÿ , Belgian |duke | ( b. )              
## [doc1556] e of Elbeuf , French |duke | and nobleman ( d . )
## [doc1566]  - Eisenach , German |duke | ( d. ) August – Infa
## [doc1570] xe - Weimar , German |duke | ( d . )             
## [doc1578] uc de Luynes , first |duke | of Chaulnes ( d. ) A
## [doc1583] ndo Afán de Ribera , |duke | of Alcalá de los Gaz
## [doc1590] e of Osuna , Spanish |duke | ( b. )              
## [doc1594]  of Mantua , Italian |duke | and Catholic cardina
## [doc1594] xe - Weimar , German |duke | ( d. ) February – Wi
## [doc1600] e of Osuna , Spanish |duke | ( b. ) November – Na
## [doc1603] - Lauenburg , German |duke | ( b. )              
## [doc1605] e of Elbeuf , French |duke | and nobleman ( b. ) 
## [doc1605] xe - Weimar , German |duke | ( b. )              
## [doc1607]  of Orléans , French |duke | ( d. ) April – Count
## [doc1611]  of Orléans , French |duke | ( b. )              
## [doc1615]  Neuenstadt , German |duke | ( d. ) December – Be
## [doc1625] e de Osuna , Spanish |duke | ( d. ) John Davies ,
## [doc1626] xe - Weimar , German |duke | ( b. )              
## [doc1627]  of Mantua , Italian |duke | and Catholic cardina
## [doc1629]  du Plessis , French |duke | ( d. ) Charles II , 
## [doc1634] burg - Plön , German |duke | ( d .               
## [doc1634] e -Eisenach , German |duke | ( d . )             
## [doc1634] burg - Plön , German |duke | ( d .               
## [doc1637] ndo Afán de Ribera , |duke | of Alcalá de los Gaz
## [doc1638]  - Eisenach , German |duke | ( b. )              
## [doc1649] Weissenfels , German |duke | ( d. ) Esmé Stewart 
## [doc1650] María de la Aurora , |duke | of Escalona , Spanis
## [doc1664]  de Gondrin , French |duke | ( d. ) September Joh
## [doc1664]  de Gondrin , French |duke | ( d. )              
## [doc1682]  Neuenstadt , German |duke | ( b. )              
## [doc1684] te de Beauvilliers , |duke | of Saint - Aignan , 
## [doc1686]  - Eisenach , German |duke | ( b. )              
## [doc1686] Axel Löwen , Swedish |duke | ( d. ) Colin Campbel
## [doc1690] arles II and English |duke | ( b. )              
## [doc1690] of Montagu , British |duke | ( d. ) April – Angel
## [doc1690] arles II and English |duke | ( b. )              
## [doc1690] September – Yebušu , |duke | of First Rank ( b. )
## [doc1691]  - Eisenach , German |duke | ( d. ) November – Pe
## [doc1694] - Merseburg , German |duke | ( b. )              
## [doc1694] e de Osuna , Spanish |duke | ( b. )              
## [doc1694] e de Osuna , Spanish |duke | ( b. )              
## [doc1697] Weissenfels , German |duke | ( b. )              
## [doc1699] e of Saxe - Coburg , |duke | of Saxe - Coburg ( b
## [doc1702] Churchill is created |duke | of Marlborough .    
## [doc1707] ardinal of family of |dukes| of Carbognano ( d . 
## [doc1714] ke of Alba , Spanish |duke | ( d. ) October – Hed
## [doc1736]  de Gondrin , French |duke | ( b. )              
## [doc1752] and Jérica , Spanish |duke | ( d. ) April Niccolò
## [doc1773] Axel Löwen , Swedish |duke | ( b. ) August – Stan
## [doc1776] ke of Alba , Spanish |duke | ( b. ) November – Ja
## [doc1784] arshal of France and |duke | of Isly ( d. ) Octob
## [doc1787] and Jérica , Spanish |duke | ( b. )              
## [doc1810] reaty with Abkhazian |dukes| , and declares a pro
## [doc1849]  Marshal of France , |duke | of Isly ( b. )
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col()

get <- dsst_kwic(anno, terms = "Muslim", n = 2000000000000) %>%
  substr(2,8)
## [doc0573]           Abu Bakr , |Muslim| Caliph ( approximate
## [doc0577] s Uthman ibn Affan , |Muslim| Caliph ( d. ) August
## [doc0600]  Ali ibn Abi Talib , |Muslim| caliph and Shi‘ ah i
## [doc0603]  Aswad al - Du'ali , |Muslim| scholar ( approximat
## [doc0622] ment between various |Muslim| , Jewish , Christian
## [doc0623]   March – Marwan I , |Muslim| Caliph ( d. ) Jizang
## [doc0633]                  The |Muslim| army attacks a Persi
## [doc0633]                  The |Muslim| Arabs ( 15,000 men )
## [doc0634]  Siege of Damascus : |Muslim| Arabs under Khalid c
## [doc0634]  August – Abu Bakr , |Muslim| Caliph Cadwallon , k
## [doc0634] hman Jadhuyih defeat |Muslim| Arabs at Euphrates (
## [doc0634]                  The |Muslim| Arabs under Khalid d
## [doc0635] Gaza is conquered by |Muslim| Arabs under ' Amr ib
## [doc0636] long Yarmouk River , |Muslim| forces ( 25,000 men 
## [doc0637]    Siege of Aleppo : |Muslim| Arabs under Khalid i
## [doc0637]   Battle of Jalula : |Muslim| Arabs defeat Persian
## [doc0639] nd military camps of |Muslim| Arabs , killing most
## [doc0640]           December – |Muslim| Arabs capture Babylo
## [doc0641] iege of Alexandria : |Muslim| Arabs under ' Amr ib
## [doc0641] ch of Mesopotamia to |Muslim| Arabs .             
## [doc0642] ) Mujahid ibn Jabr , |Muslim| scholar ( or )      
## [doc0644] n of Umar I Umar I , |Muslim| caliph ( r. 634–644 
## [doc0645]            Yazid I , |Muslim| Caliph ( d. ) April 
## [doc0646] - Malik ibn Marwan , |Muslim| Caliph ( d. ) Gudula
## [doc0646] ria is recaptured by |Muslim| Arabs , after a Byza
## [doc0647] Al - Abbas ibn Ali , |Muslim| martyr ( d. ) Itzamn
## [doc0651]                  The |Muslim| Arabs occupy cities 
## [doc0656] – Uthman ibn Affan , |Muslim| Caliph ( b.         
## [doc0656]                  The |Muslim| expansion comes to a
## [doc0662] - Akbar ibn Husayn , |Muslim| martyr ( b. ) Kakino
## [doc0662] yad ibn Abi Sufyan , |Muslim| general and a member
## [doc0665] ) Sa'id ibn Jubayr , |Muslim| scholar ( d. ) April
## [doc0665]                      |Muslim| Conquest : An Arab a
## [doc0667] an ) revolts against |Muslim| - Arabs , but is def
## [doc0668]   [ ] Al - Walid I , |Muslim| caliph ( d. ) Gyoki 
## [doc0668]  of years , in which |Muslim| - Arabs have made an
## [doc0669]                  The |Muslim| - Arabs are decimate
## [doc0669] e date ) Qutayba ibn |Muslim| , Arab general ( app
## [doc0670]  ) Tariq ibn Ziyad , |Muslim| general ( d. ) Tatwi
## [doc0672]  ibn al - Muhallab , |Muslim| governor ( d. ) Janu
## [doc0673] yad ibn Abi Sufyan , |Muslim| general             
## [doc0674]                  The |Muslim| -Arabs raid Crete , 
## [doc0674] ibn Abd al - Malik , |Muslim| caliph ( approximate
## [doc0676] s his son Yazid with |Muslim| reinforcements to Co
## [doc0683] November – Yazid I , |Muslim| caliph ( b. )       
## [doc0684] fficial Muawiya II , |Muslim| caliph ( b. )       
## [doc0686]  Husayn ibn Numayr , |Muslim| general Landelin , F
## [doc0687] te date ) Yazid II , |Muslim| caliph ( d. ) March 
## [doc0688]  Aswad al - Du'ali , |Muslim| scholar ( or )      
## [doc0691] ibn Abd al - Malik , |Muslim| caliph ( d. ) Marwan
## [doc0692] s , and goes over to |Muslim| Arabs .             
## [doc0700] te ) Wasil ibn Ata , |Muslim| ( d. ) Willibald , b
## [doc0700]                  Abu |Muslim| Khorasani , Muslim g
## [doc0700] an ibn al - Nu'man , |Muslim| emir ( general )    
## [doc0701] n ( d. ) Yazid III , |Muslim| caliph ( d. ) Septem
## [doc0702] an rebellion against |Muslim| rule breaks out , wi
## [doc0702] xth Shi‘ ah Imam and |Muslim| scholar ( d. ) Onaka
## [doc0704]                  The |Muslim| Arabs under Abdallah
## [doc0705] - Malik ibn Marwan , |Muslim| caliph ( b. )       
## [doc0705] sia , as Qutayba ibn |Muslim| becomes governor of 
## [doc0706]      Al - Walid II , |Muslim| caliph ( d. ) Eoppa 
## [doc0707]                  The |Muslim| - Arabs conquer Bale
## [doc0707] ahman al - Awza 'i , |Muslim| scholar ( d. ) Theud
## [doc0708]  - Allah ibn Ibadh , |Muslim| jurist and imam Drog
## [doc0709] fforts , Qutayba ibn |Muslim| captures Bukhara ( U
## [doc0710] ms , suffering first |Muslim| raid expedition agai
## [doc0710]  I ibn Mansur founds |Muslim| Kingdom of Nekor ( M
## [doc0711]                  The |Muslim| Arabs defeat Visigot
## [doc0712]   Abdallah ibn Ali , |Muslim| general ( approximat
## [doc0712] es under Qutayba ibn |Muslim| conquer Khwarezm and
## [doc0714] t Sa'id ibn Jubayr , |Muslim| scholar ( b. )      
## [doc0714]        Al - Mansur , |Muslim| caliph ( d. )       
## [doc0715] ary – Al - Walid I , |Muslim| caliph ( b. )       
## [doc0715] governor Qutayba ibn |Muslim| , Arab general ( b. 
## [doc0716] Sufyan al - Thawri , |Muslim| scholar and jurist (
## [doc0717] ibn Abd al - Malik , |Muslim| caliph ( b. )       
## [doc0717] ( d. ) Rabia Basri , |Muslim| Sufi mystic and sain
## [doc0719] f Gaul ( first major |Muslim| attack upon Visigoth
## [doc0720] onne capital city of |Muslim| Septimania ( Souther
## [doc0720]  ibn al - Muhallab , |Muslim| governor ( b. )     
## [doc0720] uhammad ibn Marwan , |Muslim| general ( or )      
## [doc0720]  ) Tariq ibn Ziyad , |Muslim| general ( b. ) Umar 
## [doc0720] st Turgesh attack on |Muslim| - Arabs in Transoxia
## [doc0720] oths refuse to adopt |Muslim| faith , and flee nor
## [doc0721]  Abbas al - Saffah , |Muslim| caliph ( approximate
## [doc0721] alik al - Khawlani , |Muslim| general ( approximat
## [doc0722]   Mujahid ibn Jabr , |Muslim| scholar             
## [doc0725]  , defending it from |Muslim| raids ( approximate 
## [doc0726]  Suhaym al - Kalbi , |Muslim| governor Marcello Te
## [doc0728]        Abu Ubaidah , |Muslim| scholar of Arabic ph
## [doc0731]  Abd al - Rahman I , |Muslim| emir of Córdoba ( d.
## [doc0732]            A Umayyad |Muslim| army ( 40,000 men ) 
## [doc0732] road , and fends off |Muslim| skirmishes during ' 
## [doc0737] ham ibn al - Kalbi , |Muslim| historian ( d. ) Hua
## [doc0737] el intercept a large |Muslim| army sent from Al - 
## [doc0737] u'awiya ibn Hisham , |Muslim| general Orso Ipato ,
## [doc0738] aft , Abd Al Azred , |Muslim| - kafir scholar and 
## [doc0740]          About 6,800 |Muslim| Arabs , however , re
## [doc0740] d by a fleet of Arab |Muslim| ships sent by govern
## [doc0742]  Mansur al - Mahdi , |Muslim| caliph ( or )       
## [doc0743] Abd Allah ibn Wahb , |Muslim| jurist ( d. ) Februa
## [doc0744] tember – Yazid III , |Muslim| caliph ( b. )       
## [doc0744] il – Al - Walid II , |Muslim| caliph ( b. )       
## [doc0744]  Mansur al - Mahdi , |Muslim| caliph ( or )       
## [doc0745]  Mansur al - Mahdi , |Muslim| caliph ( or )       
## [doc0745]  Umar al - Thaqafi , |Muslim| governor            
## [doc0746]  of discontent among |Muslim| Arabs , Emperor Cons
## [doc0747] sid Revolution : Abu |Muslim| Khorasani , Persian 
## [doc0748]        Al - Waqidi , |Muslim| historian and biogra
## [doc0748] of land taxation for |Muslim| Arabs .             
## [doc0748]      Wasil ibn Ata , |Muslim| and jurist ( b. )   
## [doc0748] imi rebels under Abu |Muslim| Khorasani take Merv 
## [doc0749] mmad al - Shaybani , |Muslim| jurist ( approximate
## [doc0749]  Shabib al - Ta 'i , |Muslim| general December – J
## [doc0752] ica ) , dispatches a |Muslim| army and reconquers 
## [doc0752] occupied by Gothic - |Muslim| forces .            
## [doc0754]  Abbas al - Saffah , |Muslim| caliph August – Carl
## [doc0754] - Mansur , under Abu |Muslim| , at Nisibis ( moder
## [doc0755] hri , Arab noble Abu |Muslim| Khorasani , Persian 
## [doc0756]  Ibn al - Muqaffa' , |Muslim| writer and , is tort
## [doc0756] e date ) Abu Nuwas , |Muslim| poet ( d. ) Fujiwara
## [doc0756]  Ibn al - Muqaffa' , |Muslim| writer ( approximate
## [doc0756] attle for control of |Muslim| - ruled parts of Ibe
## [doc0757]   April – Hisham I , |Muslim| emir ( d. ) Gisela ,
## [doc0758] angzhou is sacked by |Muslim| and Persian raiders 
## [doc0759] sad ibn al - Furat , |Muslim| jurist and ( d. ) Gr
## [doc0763]  Harun al - Rashid , |Muslim| caliph ( or )       
## [doc0764]   Abdallah ibn Ali , |Muslim| general Bregowine , 
## [doc0764]          Abu Thawr , |Muslim| scholar ( d. ) Al - 
## [doc0765] a , Shi‘ ah Imam and |Muslim| scholar ( d. ) Fastr
## [doc0765] xth Shi‘ ah Imam and |Muslim| scholar ( b. ) Junni
## [doc0766] 'ath al - Khuza 'i , |Muslim| governor            
## [doc0766]  Harun al - Rashid , |Muslim| caliph ( or )       
## [doc0766] Yahya al - Barmaki , |Muslim| governor ( d . )    
## [doc0766] h , Shi‘ ah Imam and |Muslim| scholar Fallomon mac
## [doc0767] ntinople Ibn Ishaq , |Muslim| historian and hagiog
## [doc0767]         Abu Hanifa , |Muslim| imam and scholar ( b
## [doc0767]  ) Bishr al - Hafi , |Muslim| ( approximate date )
## [doc0774] ahman al - Awza 'i , |Muslim| scholar ( b. )      
## [doc0774]        Abu Mikhnaf , |Muslim| historian ( approxim
## [doc0774] ahman al - Awza 'i , |Muslim| scholar ( b. )      
## [doc0774]        Abu Mikhnaf , |Muslim| historian ( approxim
## [doc0775]  against Bulgars and |Muslim| Arabs .             
## [doc0775] ober – Al - Mansur , |Muslim| caliph ( b. ) date u
## [doc0776] Humayd ibn Qahtaba , |Muslim| military leader Nuad
## [doc0776]   Sahnun ibn Sa'id , |Muslim| jurist ( or )       
## [doc0776]   Tahir ibn Husayn , |Muslim| governor ( or ) date
## [doc0776] Humayd ibn Qahtaba , |Muslim| military leader Nuad
## [doc0776]   Sahnun ibn Sa'id , |Muslim| jurist ( or )       
## [doc0776]   Tahir ibn Husayn , |Muslim| governor ( or )     
## [doc0777]  Ishaq ibn Rahwayh , |Muslim| imam ( or ) [ ]     
## [doc0777]  Ishaq ibn Rahwayh , |Muslim| imam ( or ) [ ]     
## [doc0778] sian Theme , defeats |Muslim| - Arabs at fortress 
## [doc0778] li ibn al - Madini , |Muslim| scholar ( d. ) Berna
## [doc0778] Sufyan al - Thawri , |Muslim| scholar and jurist (
## [doc0779] him ibn al - Mahdi , |Muslim| prince ( d. ) Jia Da
## [doc0783] nasty Isa ibn Musa , |Muslim| governor ( or )     
## [doc0784] abbot Isa ibn Musa , |Muslim| governor ( or ) Paul
## [doc0784]  Abd al - Rahman I , |Muslim| emir of Córdoba ( Al
## [doc0784] a 'd al - Baghdadi , |Muslim| historian ( d. )    
## [doc0785]  Mansur al - Mahdi , |Muslim| Caliph Ruaidrí mac F
## [doc0785] - Rabi ' ibn Yunus , |Muslim| minister ( or )     
## [doc0786] tember – Al - Hadi , |Muslim| caliph ( b. ) Septem
## [doc0786] bn Yusuf ibn Ma<U+1E6D>ar , |Muslim| mathematician ( d. )
## [doc0786] - Rabi ' ibn Yunus , |Muslim| minister ( or ) Cyne
## [doc0786]     Sahl ibn Bishr , |Muslim| astrologer ( approxi
## [doc0787] ' shar al - Balkhi , |Muslim| scholar and astrolog
## [doc0788]  Abd al - Rahman I , |Muslim| emir of Córdoba ( b.
## [doc0788]         Abu Tammam , |Muslim| poet ( d. )         
## [doc0788]  Zubayr ibn Bakkar , |Muslim| historian ( d. )    
## [doc0790] n Musa al - Qasawi , |Muslim| military leader ( d.
## [doc0790]  Fatimah bint Musa , |Muslim| saint ( d. ) Íñigo A
## [doc0791]           Idris II , |Muslim| emir of Morocco ( d.
## [doc0792] Abd al - Rahman II , |Muslim| emir of Córdoba ( d.
## [doc0793]  nobleman Idriss I , |Muslim| emir and founder of 
## [doc0796]      Al - Mu'tasim , |Muslim| caliph ( d. ) Dhul -
## [doc0796] brahim al - Fazari , |Muslim| philosopher ( or )  
## [doc0797]  Hasan ibn Qahtaba , |Muslim| military leader Berm
## [doc0798] Abdallah ibn Tahir , |Muslim| governor ( approxima
## [doc0798]  Marzuq , a Vascon - |Muslim| military leader , re
## [doc0800]  Said al - Jawhari , |Muslim| mathematician Álvaro
## [doc0801] lemagne Al - Kindi , |Muslim| philosopher and poly
## [doc0802]  Bahlul ibn Marzuq , |Muslim| general Beorhtric , 
## [doc0803] n ' Abd al - Hakam , |Muslim| historian ( d. ) Liu
## [doc0805] mmad al - Shaybani , |Muslim| jurist Wei Gao , gen
## [doc0806] brahim al - Fazari , |Muslim| philosopher ( or )  
## [doc0808] Yahya al - Barmaki , |Muslim| governor ( b. )     
## [doc0809]  Harun al - Rashid , |Muslim| caliph ( b. ) March 
## [doc0810] Ismail ibn Ibrahim , |Muslim| scholar ( b. ) Liu J
## [doc0810] ) Abbas ibn Firnas , |Muslim| physician and invent
## [doc0811]  ibn Isa ibn Mahan , |Muslim| military leader Char
## [doc0811] bu Hatim al - Razi , |Muslim| hadith scholar ( d. 
## [doc0812]  Denmark Ibrahim I , |Muslim| emir of Aghlabids ( 
## [doc0813] Muhammad at - Taqi , |Muslim| ninth Isma'ili imam 
## [doc0813] bn Harun al - Amin , |Muslim| caliph ( b. )       
## [doc0813] Abd Allah ibn Wahb , |Muslim| jurist ( b. )       
## [doc0814] - Allah ibn Numayr , |Muslim| narrator of hadith A
## [doc0814] Muhammad at - Taqi , |Muslim| ninth Isma'ili imam 
## [doc0815] bu Hanifa Dinawari , |Muslim| botanist and geograp
## [doc0816] Harthama ibn A'yan , |Muslim| governor Hildoard , 
## [doc0816]  Fatimah bint Musa , |Muslim| saint ( b. )        
## [doc0817]          Abu Dawud , |Muslim| hadith compiler ( or
## [doc0818]          Abu Dawud , |Muslim| hadith compiler ( or
## [doc0819] ham ibn al - Kalbi , |Muslim| historian ( b. ) Liu
## [doc0820] dris al - Shafi‘ i , |Muslim| imam ( b. ) Olcobhar
## [doc0821] Pious Ibn Abi Asim , |Muslim| Sunni scholar ( or )
## [doc0822]    Al - Mutawakkil , |Muslim| caliph ( d. ) Ibn Ab
## [doc0822]  b. ) Al - Hakam I , |Muslim| emir of Córdoba ( b.
## [doc0824] ammad ibn Abdallah , |Muslim| governor ( or )     
## [doc0825] ammad ibn Abdallah , |Muslim| governor ( or )     
## [doc0825] ( d. ) Abu Ubaidah , |Muslim| scholar ( b. )      
## [doc0826] ) Thabit ibn Qurra , |Muslim| astronomer and physi
## [doc0826] d. ) Al - Mubarrad , |Muslim| grammarian ( d. )   
## [doc0827]  , and sends an Arab |Muslim| expeditionary force 
## [doc0827]   Ibn al - Rawandi , |Muslim| scholar and writer (
## [doc0828] le Talha ibn Tahir , |Muslim| governor            
## [doc0828]       Ibn Qutaybah , |Muslim| scholar ( d. ) Yanto
## [doc0829] al - Razi Muhammad , |Muslim| governor Cináed mac 
## [doc0829] sty ( d. ) Yahya I , |Muslim| sultan ( d . ) June 
## [doc0829] ayr ibn al - Walid , |Muslim| governor Wei Chuhou 
## [doc0830]   Ishaq ibn Hunayn , |Muslim| physician ( approxim
## [doc0830] n Mu'adh al - Razi , |Muslim| Sufi ( d. ) Yunju Da
## [doc0830] bn Aws al - Ansari , |Muslim| linguist Wang Jian ,
## [doc0831]             Summer – |Muslim| Arabs under Caliph A
## [doc0831]                      |Muslim| Arabs reinvade Sicil
## [doc0833] ) May – Ibn Hisham , |Muslim| historian July or – 
## [doc0833] gust – Al - Ma'mun , |Muslim| caliph ( b. ) Concho
## [doc0833]         Ibn Hisham , |Muslim| historian , collects
## [doc0834] asr ibn ' Abdallah , |Muslim| governor Odo I , Fra
## [doc0835]    Ahmad ibn Tulun , |Muslim| governor ( d. ) Ahma
## [doc0836] te ) Al - Musta'in , |Muslim| caliph ( d. ) Fujiwa
## [doc0837]      Al - Muntasir , |Muslim| caliph ( d. ) Baldwi
## [doc0838] allah ibn Abdallah , |Muslim| governor ( approxima
## [doc0838] as ibn al - Ma'mun , |Muslim| prince and general B
## [doc0838] Ujayf ibn ' Anbasa , |Muslim| general Willerich , 
## [doc0839] him ibn al - Mahdi , |Muslim| prince ( b. ) Muhamm
## [doc0840] almawaih ibn Bunan , |Muslim| physician Wen Zong ,
## [doc0840] - Hassan al - Nuri , |Muslim| Sufi ( approximate d
## [doc0840] Muhammad at - Taqi , |Muslim| ninth Isma'ili imam 
## [doc0841]  Kawus al - Afshin , |Muslim| general Langdarma , 
## [doc0842]       Al - Mundhir , |Muslim| emir ( approximate d
## [doc0842] ier against invading |Muslim| Arabs .             
## [doc0842] ry – Al - Mu'tasim , |Muslim| caliph ( b. )       
## [doc0844] Abdallah ibn Tahir , |Muslim| governor ( or )     
## [doc0844] Abu Ja'far Ashinas , |Muslim| general Alberik II ,
## [doc0844] n Turkey ) , against |Muslim| Arabs of Abbasid Cal
## [doc0844] uhammad al - Umawi , |Muslim| emir ( d. ) Al - Mu'
## [doc0845] Abdallah ibn Tahir , |Muslim| governor ( or )     
## [doc0845]         Abu Tammam , |Muslim| poet ( b. ) Bridei V
## [doc0845] a 'd al - Baghdadi , |Muslim| historian ( b. ) Mis
## [doc0845]     Sahl ibn Bishr , |Muslim| astrologer ( approxi
## [doc0846] ity is recaptured by |Muslim| Arabs .             
## [doc0847] ansur al - Rafi 'i , |Muslim| governor Muhammad ib
## [doc0847] gust – Al - Wathiq , |Muslim| caliph ( b. )       
## [doc0847] ate ) Al - Mu'tazz , |Muslim| caliph ( d. ) Charle
## [doc0847]   When Baghdad Ruled |Muslim| World : The Rise and
## [doc0848] r Malik ibn Kaydar , |Muslim| governor Rechtabhra 
## [doc0849] Isma 'il ibn Ahmad , |Muslim| emir ( d. )         
## [doc0849] li ibn al - Madini , |Muslim| scholar ( b. ) c. Ju
## [doc0849] akh al - Khazari ) , |Muslim| general Zhang       
## [doc0849] - Nadr al - Jabali , |Muslim| governor June –     
## [doc0850] u Zayd al - Balkhi , |Muslim| mathematician ( d. )
## [doc0850]  ) Bishr al - Hafi , |Muslim| ( approximate date )
## [doc0850]  Christian priest in |Muslim| Córdoba , is execute
## [doc0851] uleiman al - Tajir , |Muslim| merchant and travell
## [doc0851] n Yahya ibn Mu'adh , |Muslim| governor Mor Fridebo
## [doc0852]  Ishaq ibn Rahwayh , |Muslim| imam ( or )         
## [doc0852] adun and Mozarabs in |Muslim| controlled areas in 
## [doc0852] Abd al - Rahman II , |Muslim| emir of Córdoba ( b.
## [doc0853]  Jafar al - Tahawi , |Muslim| scholar ( d. ) Abu M
## [doc0853]  Ishaq ibn Rahwayh , |Muslim| imam ( or ) Konstant
## [doc0854] n ( d. ) Abu Thawr , |Muslim| scholar ( b. )      
## [doc0854]      Al - Mu'tadid , |Muslim| caliph ( or )       
## [doc0854] ) Sahnun ibn Sa'id , |Muslim| jurist ( or ) Túatha
## [doc0855] ) Sahnun ibn Sa'id , |Muslim| jurist ( or )       
## [doc0855] Ali ibn al - Furat , |Muslim| vizier ( d. ) Gerald
## [doc0856]     Ilyas ibn Asad , |Muslim| emir ( approximate d
## [doc0857]   Yahya ibn Aktham , |Muslim| jurist Zheng Lang , 
## [doc0857] rith al - Muhasibi , |Muslim| teacher ( b. ) Hilde
## [doc0858]       Al - Battani , |Muslim| astronomer and mathe
## [doc0860] n Ishaq al - Dabbi , |Muslim| governor Athanasia o
## [doc0861] h ibn al - Mu'tazz , |Muslim| poet ( d. ) Abu Bakr
## [doc0861]   When Baghdad Ruled |Muslim| World : The Rise and
## [doc0862] Tahir ibn Abdallah , |Muslim| governor            
## [doc0862] bria Al - Muntasir , |Muslim| caliph ( b. )       
## [doc0862] n Musa al - Qasawi , |Muslim| military leader ( b.
## [doc0862]   Bugha al - Kabir , |Muslim| general Lupus Servat
## [doc0863]  Yahya al - Armani , |Muslim| governor Bivin of Go
## [doc0863] – Abu Musa Utamish , |Muslim| vizier October – Tur
## [doc0863] ly populated city in |Muslim| -dominated Armenia .
## [doc0864] tia Yahya ibn Umar , |Muslim| imam ( or )         
## [doc0864] dl al - Jarjara 'i , |Muslim| vizier ( or )       
## [doc0864] ' qub al - Kulayni , |Muslim| scholar ( d. ) Simeo
## [doc0865] sty Yahya ibn Umar , |Muslim| imam ( or )         
## [doc0865] dl al - Jarjara 'i , |Muslim| vizier ( or ) Pepin 
## [doc0868]  Dawud al - Zahiri , |Muslim| ( d. ) Théodrate of 
## [doc0868] Muzahim ibn Khaqan , |Muslim| governor Stephania ,
## [doc0869] sra'il al - Anbari , |Muslim| vizier September – W
## [doc0869] uhammad al - Mahdi , |Muslim| Twelver Shi‘ ah Imam
## [doc0869] Anglia Al - Darimi , |Muslim| scholar and imam Al 
## [doc0869]       Al - Mu'tazz , |Muslim| caliph ( b. )       
## [doc0870]  Sima al - Sharabi , |Muslim| governor Al - Zubayr
## [doc0870]  – Salih ibn Wasif , |Muslim| general February – C
## [doc0871] n ' Abd al - Hakam , |Muslim| historian ( b. )    
## [doc0871] n Mu'adh al - Razi , |Muslim| Sufi ( b. )         
## [doc0872]  qub al - Juzajani , |Muslim| hadith scholar Ivar 
## [doc0872] ( d. ) Al - Farabi , |Muslim| philosopher ( approx
## [doc0873] Muhammad ibn Tahir , |Muslim| governor of Khorasan
## [doc0873] a Hunayn ibn Ishaq , |Muslim| scholar and physicia
## [doc0873]  ( b. ) Al - Kindi , |Muslim| philosopher and poly
## [doc0873] Ahmad al - Muhajir , |Muslim| imam ( d. ) Al - Tab
## [doc0873]     Malik ibn Tawk , |Muslim| governor Muhammad ib
## [doc0873]    Ali al - Armani , |Muslim| general Rodrigo , As
## [doc0874] Hasan al - Ash'ari , |Muslim| scholar ( d. ) Edwar
## [doc0875]  , emir of Aghlabids |Muslim| ibn al - Hajjaj , Pe
## [doc0876] and Amalfi ) against |Muslim| raids .             
## [doc0878] bu Zur'a al - Razi , |Muslim| scholar Áed I , king
## [doc0879] ayman ibn Abdallah , |Muslim| governor Suppo II , 
## [doc0880] ) Sinan ibn Thabit , |Muslim| physician ( d. )    
## [doc0880] bn Yahya al - Suli , |Muslim| poet and scholar ( d
## [doc0881] nice Radi Abdullah , |Muslim| tenth Imam Zhang Zhi
## [doc0882] sh ibn Khumarawayh , |Muslim| emir ( approximate d
## [doc0882] akhlad al - Jarrah , |Muslim| vizier Ansgarde of B
## [doc0883]  Dawud al - Zahiri , |Muslim| scholar ( or )      
## [doc0884]  Dawud al - Zahiri , |Muslim| scholar ( or )      
## [doc0884] y – Hasan ibn Zayd , |Muslim| emir of Tabaristan M
## [doc0885] l ( d. ) Ibn Muqla , |Muslim| official and vizier 
## [doc0885]  Sulayman ibn Wahb , |Muslim| official and vizier 
## [doc0886] ' shar al - Balkhi , |Muslim| scholar and astrolog
## [doc0886]         Ibn Muqlah , |Muslim| official and vizier 
## [doc0886] Dynasty Muhammad I , |Muslim| emir of Córdoba ( b.
## [doc0887] y Abbas ibn Firnas , |Muslim| physician and invent
## [doc0887]          Ibn Majah , |Muslim| hadith compiler ( or
## [doc0888] queen Al - Mundhir , |Muslim| emir of Córdoba Cerb
## [doc0889]  date ) Ibn Marwan , |Muslim| Sufi leader ( approx
## [doc0889] bd al - Rahman III , |Muslim| caliph ( or )       
## [doc0889]  Sa'id ibn Makhlad , |Muslim| vizier Wang Jingwu ,
## [doc0890] bu Hatim al - Razi , |Muslim| hadith scholar ( b. 
## [doc0892] mate date ) Nasr I , |Muslim| emir of Samanid Empi
## [doc0892] er – Al - Mu'tamid , |Muslim| caliph of Abbasid Ca
## [doc0893] Masrur al - Balkhi , |Muslim| general Ariwara no Y
## [doc0893] ad al - Hasan , Arab |Muslim| geographer ( d. ) Al
## [doc0894] uhammad al - Ta 'i , |Muslim| governor December – 
## [doc0894] Ibn Abi al - Dunya , |Muslim| scholar Kang Junli ,
## [doc0896]        Al - Masudi , |Muslim| historian and geogra
## [doc0896] sh ibn Khumarawayh , |Muslim| emir Abu Hanifa Dina
## [doc0896] or ) Ibn al - Rumi , |Muslim| poet ( b. ) Klonimir
## [doc0897] h nobleman Ya'qubi , |Muslim| geographer ( or )   
## [doc0897] ad al - Madhara 'i , |Muslim| vizier Buhturi , Mus
## [doc0898]  Isa al - Shaybani , |Muslim| leader Aitíth mac La
## [doc0898]            Ya'qubi , |Muslim| geographer ( or )   
## [doc0899] hmad al - Shaybani , |Muslim| ruler of Diyar Bakr 
## [doc0900]       Ibn Abi Asim , |Muslim| Sunni scholar ( b. )
## [doc0905] bu al - Misk Kafur , |Muslim| vizier ( d. ) Al - M
## [doc0909]  Dawud al - Zahiri , |Muslim| ( b. ) Sochlachan ma
## [doc0911] n Ibn al - Rawandi , |Muslim| scholar and writer (
## [doc0911] dallah al - Shi 'i , |Muslim| Shia imam April – Li
## [doc0912] ny Ahmad ibn Yusuf , |Muslim| mathematician ( b. )
## [doc0912] ullah ibn Muhammad , |Muslim| emir ( b. )         
## [doc0915] e ) Al - Mutanabbi , |Muslim| poet ( d. ) Boleslau
## [doc0922] ate ) Ibn Abi Zayd , |Muslim| imam and scholar ( d
## [doc0923]  Shaykh al - Saduq , |Muslim| scholar ( approximat
## [doc0923] ia ) Ibn Khuzaymah , |Muslim| hadith and scholar (
## [doc0923]  Bakr al - Khallal , |Muslim| scholar and jurist (
## [doc0924] r Damian of Tarsus , |Muslim| governor Gyeongmyeon
## [doc0931] f York Ibn Masarra , |Muslim| ascetic and scholar 
## [doc0936] u Bakr ibn Mujahid , |Muslim| canonical reader and
## [doc0936] Qasim al - Zahrawi , |Muslim| physician and surgeo
## [doc0940] . ) Al - Baqillani , |Muslim| and jurist ( approxi
## [doc0941]  Abu Bakr Muhammad , |Muslim| governor Fujiwara no
## [doc0941] ) ( d. ) Ibn Furak , |Muslim| imam , jurist and ( 
## [doc0944]         Ibn Juljul , |Muslim| physician ( approxim
## [doc0944] nsur al - Maturidi , |Muslim| ( b. )              
## [doc0944] l - Mu'ayyad Ahmad , |Muslim| imam ( d. ) Fujiwara
## [doc0945] l - Muqaddasi , Arab |Muslim| geographer ( approxi
## [doc0945] ad al - Hasan , Arab |Muslim| geographer ( b. )   
## [doc0949]  show of strength of |Muslim| State in Al - Andalu
## [doc0950] date ) Al - Farabi , |Muslim| philosopher ( or )  
## [doc0951]        Sidi Mahrez , |Muslim| scholar and ' protec
## [doc0951]    Abu Talib Yahya , |Muslim| imam of Zaydiyyah se
## [doc0956] Ahmad al - Muhajir , |Muslim| scholar and imam ( b
## [doc0956] ober – Al - Masudi , |Muslim| historian and geogra
## [doc0965] reek population from |Muslim| domination .        
## [doc0965] onquest of Cilicia ; |Muslim| raids into Anatolia 
## [doc0965]                  The |Muslim| residents abandon de
## [doc0971] Anemas , Byzantine ( |Muslim| ) army commander Att
## [doc0978]  date ) Ibn Hawqal , |Muslim| writer , geographer 
## [doc0978]  date ) Ibn Hawqal , |Muslim| writer , geographer 
## [doc0978]  ( b. ) Ibn Hawqal , |Muslim| Arab geographer Lash
## [doc0979] ' Imran ibn Shahin , |Muslim| ruler Vitale Candian
## [doc0979] ' Imran ibn Shahin , |Muslim| ruler Vitale Candian
## [doc0982] avy cavalry destroys |Muslim| centre , killing al 
## [doc0991] l - Muqaddasi , Arab |Muslim| geographer Ashot - S
## [doc0996]       Ibn Abi Zayd , |Muslim| imam and scholar ( b
## [doc1001]   Mahmud of Ghazni , |Muslim| leader of Ghazni , b
## [doc1002] atib al - Baghdadi , |Muslim| scholar ( d. )      
## [doc1005] f Connacht Ma Yize , |Muslim| astronomer of Song D
## [doc1010]            Allied to |Muslim| rebels , Ramon Borre
## [doc1015] e date ) Ibn Furak , |Muslim| imam and ( b. )     
## [doc1015] e date ) Ibn Furak , |Muslim| imam and ( b. )     
## [doc1016] d Badis ibn Mansur , |Muslim| emir of Zirid dynast
## [doc1020] l - Mu'ayyad Ahmad , |Muslim| imam ( b. )         
## [doc1023] ayyan al - Tawhidi , |Muslim| intellectual ( b. ) 
## [doc1025] - Jabbar ibn Ahmad , |Muslim| ( b. )              
## [doc1031] umber of independent |Muslim| taifa ( kingdoms ) .
## [doc1033] op Abu Talib Yahya , |Muslim| imam ( Zaidiyyah sec
## [doc1034] ng from weakening of |Muslim| central authority , 
## [doc1055]  Christian allies of |Muslim| taifas .            
## [doc1057] tian lords allied to |Muslim| Taifa of Silves . [ 
## [doc1063] le of Graus : Allied |Muslim| and Christian troops
## [doc1110]  all of Andalusia 's |Muslim| states under Almorav
## [doc1119] armada ) by combined |Muslim| forces ( 20,000 men 
## [doc1145] al - Mu'min defeat a |Muslim| Almoravid army at Tl
## [doc1152] eets , slaying every |Muslim| in way , but Assassi
## [doc1154] ers last independent |Muslim| stronghold at Granad
## [doc1158] ledo ) from incoming |Muslim| raiders .           
## [doc1179]  destroy a number of |Muslim| ships .             
## [doc1182]  by surprise to sink |Muslim| ships he is spotted 
## [doc1187] illon attack a large |Muslim| caravan , including 
## [doc1191] kes almost immune to |Muslim| missile attacks. [ ]
## [doc1191]  Siege of Acre : The |Muslim| garrison surrenders 
## [doc1203]  , sultan of Egypt , |Muslim| ships attack Crusade
## [doc1203] n , by capturing six |Muslim| ships off Acre .    
## [doc1229] directly confronting |Muslim| army .              
## [doc1236] II ( Saint ) capture |Muslim| Córdoba from Emir Ib
## [doc1237] de Montpeller defeat |Muslim| army ( some 12,000 m
## [doc1238] nry III , to forge a |Muslim| – Christian alliance
## [doc1244] e on distribution of |Muslim| lands yet to be conq
## [doc1247]              Many of |Muslim| ships are driven ash
## [doc1250] year and ending in , |Muslim| Shougeng Pu , likely
## [doc1278]  King Peter III take |Muslim| stronghold of Montes
## [doc1290] ife making love to a |Muslim| .                   
## [doc1329] ampaigns in southern |Muslim| provinces ( possibly
## [doc1332] ampaigns in southern |Muslim| provinces ( possibly
## [doc1339]  Kashmir , beginning |Muslim| Shah Mir Dynasty .  
## [doc1345] uring rule in famous |Muslim| traveller Ibn Battut
## [doc1345]  of local area was a |Muslim| , and people worship
## [doc1346] ains , as well as by |Muslim| expansion .         
## [doc1346]  by Shah Mir , first |Muslim| to rule area. [ ] [ 
## [doc1346] ire in opposition to |Muslim| rule in north .     
## [doc1347]  Bahmani Kingdom , a |Muslim| Sultanate in Deccan 
## [doc1366] jayanagar Empire and |Muslim| Bahmani Sultanate in
## [doc1497] ttab , Tripolitanian |Muslim| jurist ( d. )       
## [doc1526] ibn Ma'ruf , Ottoman |Muslim| scientist ( d . ) He
## [doc1542] ão da Gama capture a |Muslim| -occupied hillfort i
## [doc1641] Ghani al - Nabulsi , |Muslim| scholar ( d. ) March
## [doc1662] or Christians within |Muslim| -ruled Ottoman Empir
## [doc1669]  April – Aurangzeb , |Muslim| Emperor of Mughal Em
## [doc1670]        January – The |Muslim| emperor Aurangzeb of
## [doc1693]  - Hurr al - Amili , |Muslim| cleric and scholar (
## [doc1693]  - Hurr al - Amili , |Muslim| cleric and scholar (
## [doc1757]  News of massacre of |Muslim| pilgrims first reach
## [doc1800] ro by Syrian Kurdish |Muslim| student Suleiman al 
## [doc1800] ro by Syrian Kurdish |Muslim| student Suleiman al 
## [doc1835] founder of Ahmadiyya |Muslim| Community ( d. ) Feb
## [doc1841] keem Noor -ud -Din , |Muslim| scholar , Caliph of 
## [doc1841] keem Noor -ud -Din , |Muslim| scholar , Caliph of 
## [doc1850] bdul Wahid Bengali , |Muslim| and teacher ( d. ) [
## [doc1862] zur Rahman , Bengali |Muslim| and teacher ( d. ) [
## [doc1867]  Serer people defeat |Muslim| Marabouts of Senegam
## [doc1873] li Jaunpuri , Indian |Muslim| scholar ( b. ) [ ]  
## [doc1889]  Caliph of Ahmadiyya |Muslim| Community in Islam (
## [doc1889] mad founds Ahmadiyya |Muslim| community in Punjab 
## [doc1905] egion of Bengal into |Muslim| and Hindu territorie
## [doc1905] bdul Wahid Bengali , |Muslim| and teacher ( b. ) [
## [doc1906] ber – The All -India |Muslim| League is founded as
## [doc1906]  Egyptian founder of |Muslim| Brotherhood ( d. ) H
## [doc1913]        The Ahmadiyya |Muslim| Community is establi
## [doc1922] zur Rahman , Bengali |Muslim| and teacher ( b. ) [
## [doc1926] talian sculptor June |Muslim| Arogundade , Nigeria
## [doc1928] ght. [ ] March – The |Muslim| Brotherhood is found
## [doc1931] laysian politician , |Muslim| cleric ( d. ) Januar
## [doc1938]  Caliph of Ahmadiyya |Muslim| Community .         
## [doc1940] wn up by All - India |Muslim| League during a - da
## [doc1942] n astronaut August – |Muslim| Magomayev , Soviet ,
## [doc1948]         December – A |Muslim| Brotherhood member a
## [doc1949]  Egyptian founder of |Muslim| Brotherhood ( b. ) (
## [doc1954]            October – |Muslim| Brotherhood member M
## [doc1960] died by European and |Muslim| rioters , in Algeria
## [doc1965]  Caliph of Ahmadiyya |Muslim| Community in Islam (
## [doc1966]          The Chadian |Muslim| insurgent group FROL
## [doc1966]          The Chadian |Muslim| insurgent group FROL
## [doc1967] ( alongside Pakistan |Muslim| League ) is broken i
## [doc1967] kir Hussain is first |Muslim| to become president 
## [doc1967] kir Hussain is first |Muslim| to become president 
## [doc1967] ( alongside Pakistan |Muslim| League ) is broken i
## [doc1973] Saeb Salam , a Sunni |Muslim| .                   
## [doc1975] ti Menk , Zimbabwean |Muslim| cleric and Mufti Tob
## [doc1979] ebruary – In Kabul , |Muslim| extremists kidnap Am
## [doc1980]             June – A |Muslim| Brotherhood assassin
## [doc1982] ge city of Harran of |Muslim| Brotherhood .       
## [doc1985] first Arab and first |Muslim| in space , as a payl
## [doc1989] est : Uyghur and Hui |Muslim| protesters riot in f
## [doc1989] est : Uyghur and Hui |Muslim| protesters riot in f
## [doc1992] sted and detained by |Muslim| rebels moving toward
## [doc2001] etween Christian and |Muslim| rioters begin in Jos
## [doc2005]  , Iraq , kills Shia |Muslim| pilgrims who were ce
## [doc2012]  Morsi , a member of |Muslim| Brotherhood , is ele
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col()

get <- dsst_kwic(anno, terms = "entrant", n = 2000000000000) %>%
  substr(2,8)
## [doc1895]                 Five |entrants| start event ; only c
## [doc2004]  is won by Ukrainian |entrant | Ruslana with song Wi
## [doc2005]  and is won by Greek |entrant | Helena Paparizou wit
## [doc2006]  won by Finnish band |entrant | Lordi with song Hard
## [doc2007] nd is won by Serbian |entrant | Marija Šerifovic wit
## [doc2008] nd is won by Russian |entrant | Dima Bilan with song
## [doc2009]  is won by Norwegian |entrant | Alexander Rybak with
## [doc2010] and is won by German |entrant | Lena with song Satel
## [doc2011]  and is won by Azeri |entrants| Ell & Nikki with son
## [doc2012] nd is won by Swedish |entrant | Loreen with song Eup
## [doc2013] and is won by Danish |entrant | Emmelie de Forest wi
## [doc2014] d is won by Austrian |entrant | Conchita Wurst with 
## [doc2015] nd is won by Swedish |entrant | Måns Zelmerlöw with 
## [doc2016]  is won by Ukrainian |entrant | Jamala with song .  
## [doc2017] is won by Portuguese |entrant | Salvador Sobral with
## [doc2018] nd is won by Israeli |entrant | Netta Barzilai with 
## [doc2019]  and is won by Dutch |entrant | Duncan Laurence with
## [doc2021] st is won by Italian |entrants| Måneskin with song Z
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col()

get <- dsst_kwic(anno, terms = "Eurovision", n = 2000000000000) %>%
  substr(2,8)
## [doc1911] au , French singer , |Eurovision| Song Contest winner 
## [doc1924] er , first winner of |Eurovision| Song Contest ( ) ( d
## [doc1924] er , first winner of |Eurovision| Song Contest ( ) ( d
## [doc1932] ken , Dutch singer , |Eurovision| Song Contest winner 
## [doc1951] lon , Irish singer , |Eurovision| Song Contest winner 
## [doc1951] lon , Irish singer , |Eurovision| Song Contest winner 
## [doc1952] id , French singer , |Eurovision| Song Contest winner 
## [doc1953] vision presenter and |Eurovision| Song Contest winner 
## [doc1954] inger , composer and |Eurovision| Song Contest winner 
## [doc1956]            The first |Eurovision| Song Contest is broa
## [doc1957]  van Hemert ) , wins |Eurovision| Song Contest ( held 
## [doc1959]          March – The |Eurovision| Song Contest , stage
## [doc1960] y Pierre Cour ) wins |Eurovision| Song Contest for Fra
## [doc1961] urice Vidalin ) wins |Eurovision| Song Contest for Lux
## [doc1961] ès , French singer , |Eurovision| Song Contest winner 
## [doc1961] urice Vidalin ) wins |Eurovision| Song Contest for Lux
## [doc1962] hane Valade ) , wins |Eurovision| Song Contest for Fra
## [doc1962] hane Valade ) , wins |Eurovision| Song Contest for Fra
## [doc1963] er - Sørensen ) wins |Eurovision| Song Contest for Den
## [doc1964] rt , German singer , |Eurovision| Song Contest winner 
## [doc1964] Mario Panzeri ) wins |Eurovision| Song Contest for Ita
## [doc1964] inger - songwriter , |Eurovision| Song Contest winner 
## [doc1964] inger - songwriter , |Eurovision| Song Contest winner 
## [doc1964] rt , German singer , |Eurovision| Song Contest winner 
## [doc1965] ge Gainsbourg ) wins |Eurovision| Song Contest for Lux
## [doc1965] ge Gainsbourg ) wins |Eurovision| Song Contest for Lux
## [doc1966] omas Hörbiger ) wins |Eurovision| Song Contest for Aus
## [doc1966] omas Hörbiger ) wins |Eurovision| Song Contest for Aus
## [doc1966] Swedish pop singer , |Eurovision| Song Contest winner 
## [doc1967]  Phil Coulter ) wins |Eurovision| Song Contest for Uni
## [doc1968] agh , Irish singer , |Eurovision| Song Contest winner 
## [doc1968]  Ramón Arcusa ) wins |Eurovision| Song Contest for Spa
## [doc1968]  Ramón Arcusa ) wins |Eurovision| Song Contest for Spa
## [doc1969]          March – The |Eurovision| Song Contest is held
## [doc1970] ackie Smith ) , wins |Eurovision| Song Contest for Ire
## [doc1972] m , Belgian singer , |Eurovision| Song Contest winner 
## [doc1972] rish Celtic singer , |Eurovision| Song Contest winner 
## [doc1972] & Yves Dessca ) wins |Eurovision| Song Contest for Lux
## [doc1973] y Vline Buggy ) wins |Eurovision| Song Contest for Lux
## [doc1973] omedian and singer , |Eurovision| Song Contest runner 
## [doc1973] omedian and singer , |Eurovision| Song Contest runner 
## [doc1973] ) , Latvian singer , |Eurovision| Song Contest winner 
## [doc1973] op star , activist , |Eurovision| Song Contest winner 
## [doc1973] op star , activist , |Eurovision| Song Contest winner 
## [doc1974] s song Waterloo wins |Eurovision| Song Contest in Brig
## [doc1975] d Eddy Ouwens ) wins |Eurovision| Song Contest for Net
## [doc1976]                  The |Eurovision| Song Contest is won 
## [doc1976] a , Maltese singer , |Eurovision| Song Contest runner 
## [doc1978] ohen & Alphabeta win |Eurovision| Song Contest for Isr
## [doc1978] ohen & Alphabeta win |Eurovision| Song Contest for Isr
## [doc1979]   Milk and Honey win |Eurovision| Song Contest for Isr
## [doc1979]   Milk and Honey win |Eurovision| Song Contest for Isr
## [doc1981] ng Your Mind Up wins |Eurovision| Song Contest in Dubl
## [doc1982]          Nicole wins |Eurovision| Song Contest ( held 
## [doc1984] Loo Diggi - Ley wins |Eurovision| Song Contest for Swe
## [doc1984] Loo Diggi - Ley wins |Eurovision| Song Contest for Swe
## [doc1985]            May – The |Eurovision| Song Contest takes p
## [doc1993]  Niamh Kavanagh wins |Eurovision| Song Contest for Ire
## [doc1997] atrina and Waves win |Eurovision| Song Contest for Uni
## [doc2004]      May 12–15 – The |Eurovision| Song                
## [doc2005]                  The |Eurovision| Song Contest takes p
## [doc2006]                  The |Eurovision| Song Contest takes p
## [doc2007]  [ ] May 10–12 – The |Eurovision| Song                
## [doc2008]  [ ] May 20–24 – The |Eurovision| Song                
## [doc2009]                  The |Eurovision| Song                
## [doc2010]                  The |Eurovision| Song Contest takes p
## [doc2011]                  The |Eurovision| Song Contest takes p
## [doc2012]                  The |Eurovision| Song Contest takes p
## [doc2013]  [ ] May 14–18 – The |Eurovision| Song Contest takes p
## [doc2014]                  The |Eurovision| Song Contest takes p
## [doc2015]                  The |Eurovision| Song Contest is held
## [doc2016]                  The |Eurovision| Song Contest is held
## [doc2017]                  The |Eurovision| Song Contest takes p
## [doc2018]                  The |Eurovision| Song Contest is held
## [doc2019] ail. [ ] May – – The |Eurovision| Song Contest takes p
## [doc2020]                  The |Eurovision| Song Contest is canc
## [doc2020]                  The |Eurovision| Song Contest is canc
## [doc2021]                  The |Eurovision| Song Contest is held
## [doc2022]                  The |Eurovision| Song Contest is held
## [doc2023] election May – May – |Eurovision| Song Contest in Live
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col()

dsst_kwic(anno, terms = "Eurovision")
## [doc1911] au , French singer , |Eurovision| Song Contest winner 
## [doc1951] lon , Irish singer , |Eurovision| Song Contest winner 
## [doc1952] id , French singer , |Eurovision| Song Contest winner 
## [doc1956]            The first |Eurovision| Song Contest is broa
## [doc1961] urice Vidalin ) wins |Eurovision| Song Contest for Lux
## [doc1964] rt , German singer , |Eurovision| Song Contest winner 
## [doc1964] Mario Panzeri ) wins |Eurovision| Song Contest for Ita
## [doc1968] agh , Irish singer , |Eurovision| Song Contest winner 
## [doc1969]          March – The |Eurovision| Song Contest is held
## [doc1970] ackie Smith ) , wins |Eurovision| Song Contest for Ire
## [doc1972] m , Belgian singer , |Eurovision| Song Contest winner 
## [doc1973] y Vline Buggy ) wins |Eurovision| Song Contest for Lux
## [doc1973] omedian and singer , |Eurovision| Song Contest runner 
## [doc1973] omedian and singer , |Eurovision| Song Contest runner 
## [doc1979]   Milk and Honey win |Eurovision| Song Contest for Isr
## [doc1982]          Nicole wins |Eurovision| Song Contest ( held 
## [doc1997] atrina and Waves win |Eurovision| Song Contest for Uni
## [doc2012]                  The |Eurovision| Song Contest takes p
## [doc2013]  [ ] May 14–18 – The |Eurovision| Song Contest takes p
## [doc2020]                  The |Eurovision| Song Contest is canc
get <- dsst_kwic(anno, terms = "approximate", n = 2000000000000) %>%
  substr(2,8)
## [doc0002] nus , Roman consul ( |approximate | date )              
## [doc0006] h Christian mystic ( |approximate | date ) [ citation ne
## [doc0007] of Parthian Empire ( |approximate | date ) .            
## [doc0007] laus of Cappadocia ( |approximate | date ) Lucius Sempro
## [doc0012] The Gospel of Mark ( |approximate | date ) ( d. ) August
## [doc0013] n ( deaf ) painter ( |approximate | date ) Wang Zhengjun
## [doc0016] of Caesar Augustus ( |approximate | date )              
## [doc0016] lautia Urgulanilla ( |approximate | date ) Decimus Juniu
## [doc0017]  , Roman historian ( |approximate | date ) [ citation ne
## [doc0018] nd Agrippina Elder ( |approximate | date ) ( d. ) Crinag
## [doc0021] ols begins in Rome ( |approximate | date ) .            
## [doc0030]  Empire is founded ( |approximate | date ) .            
## [doc0034]  , ending at Nîmes ( |approximate | date ) .            
## [doc0034] of Herod Agrippa I ( |approximate | date )              
## [doc0035] us , Roman prefect ( |approximate | date ) Marcus Fabius
## [doc0037]  Church of Antioch ( |approximate | date ) .            
## [doc0038] James in Jerusalem ( |approximate | date ) ( After years
## [doc0038] , Roman Latin poet ( |approximate | date )              
## [doc0039]  Roman rhetorician ( |approximate | date )              
## [doc0040]                      |Approximate | date of start of con
## [doc0043] rtial , Roman poet ( |approximate | date ) Aemilia Lepid
## [doc0043] e situ orbis libri ( |approximate | date ) .            
## [doc0043] e military leaders ( |approximate | date )              
## [doc0044]                    ( |Approximate | date , may be as lat
## [doc0045] lla , Roman orator ( |approximate | date )              
## [doc0045] ian and biographer ( |approximate | date ) Publius Papin
## [doc0046] ian and biographer ( |approximate | date ) [ ] Marcus Vi
## [doc0049] uncil in Jerusalem ( |approximate | date )              
## [doc0049]  Agrippina Younger ( |approximate | date ) , and most of
## [doc0050]                    ( |approximate | date San Bartolo pyr
## [doc0050] nt king of Osroene ( |approximate | date ) Aulus Corneli
## [doc0050] asi ) in Babylonia ( |approximate | date ) Gaius Julius 
## [doc0050]  Romans is written ( |approximate | date ) .            
## [doc0050] tone ) are founded ( |approximate | date ) .            
## [doc0050] uncil of Jerusalem ( |approximate | date ) .            
## [doc0051] his second mission ( |approximate | date ) .            
## [doc0052] sh leader ( nasi ) ( |approximate | date )              
## [doc0052] queen of Commagene ( |approximate | date ) Publius Ostor
## [doc0053] na , Roman empress ( |approximate | date )              
## [doc0054] ica defeats rebels ( |approximate | date – some time bet
## [doc0056]  , Roman historian ( |approximate | date ) [ ]          
## [doc0056]                    ( |approximate | date ) [ ] Publius C
## [doc0058] an poet and writer ( |approximate | date ) Xu Shen , Chi
## [doc0058]  Epistle to Romans ( |approximate | date ) .            
## [doc0058] of soap from Gauls ( |approximate | date ) .            
## [doc0060] of Parthian Empire ( |approximate | date ) Boudica , Bri
## [doc0060]                    ( |approximate | date )              
## [doc0060] ndian Buddhist nun ( |approximate | date ) Marcus Vitori
## [doc0061] een of Iceni tribe ( |approximate | date ) Lucius Pedani
## [doc0061] nd bishop of Milan ( |approximate | date )              
## [doc0062] prisonment in Rome ( |approximate | date ) .            
## [doc0062] Jesus ( martyred ) ( |approximate | date ) Lucius Caecil
## [doc0064] in Crete as bishop ( |approximate | date )              
## [doc0065] , Christian martyr ( |approximate | date )              
## [doc0065] iso , Roman consul ( |approximate | date ) Gaius Julius 
## [doc0066] by use of medicine ( |approximate | date ) .            
## [doc0068] , Roman charioteer ( |approximate | date ) Gaius Bruttiu
## [doc0068] ishop of Byzantium ( |approximate | date ) Publius Petro
## [doc0068] etrine composition ( |approximate | date ) .            
## [doc0069]  , Roman historian ( |approximate | date ) [ ]          
## [doc0069] Queen of Brigantes ( |approximate | date ) Gaius Ofonius
## [doc0070]  Cynic philosopher ( |approximate | date ) Gaius Julius 
## [doc0075]  , Roman historian ( |approximate | date ) ( d. c. ) Gai
## [doc0076] of Catholic Church ( |approximate | date ) Marcus Vettiu
## [doc0078] et and philosopher ( |approximate | date )              
## [doc0079]  bishop and martyr ( |approximate | date ) Aulus Caecina
## [doc0080] es , Kushan prince ( |approximate | date ) Lucius Vipsta
## [doc0080] osopher and writer ( |approximate | date ) Asvagho<U+1E63>a , I
## [doc0080] ostles are written ( |approximate | date ) .            
## [doc0085] , Roman noblewoman ( |approximate | date ) Gaius Oppius 
## [doc0086]  Germania Superior ( |approximate | date ) .            
## [doc0087] s , bishop of Lyon ( |approximate | date ) Rupilia Faust
## [doc0087] er in Roman Senate ( |approximate | date ) .            
## [doc0087] res western Africa ( |approximate | date ) .            
## [doc0087] r 100,000 citizens ( |approximate | date ) .            
## [doc0089] Óbuda ) is founded ( |approximate | date ) .            
## [doc0090]  Capitolini , Rome ( |approximate | date ) .            
## [doc0090] hha , Jewish rabbi ( |approximate | date ) Quintus Tunei
## [doc0090]  modern Regensburg ( |approximate | date ) .            
## [doc0093]  State in Mongolia ( |approximate | date ) .            
## [doc0094] o Naples from Rome ( |approximate | date ) .            
## [doc0096] atius , Roman poet ( |approximate | date )              
## [doc0096] elation is written ( |approximate | date ) .            
## [doc0098] ishes his Germania ( |approximate | date ) .            
## [doc0100] pologist and saint ( |approximate | date ) Marcus Cornel
## [doc0101] urses of Epictetus ( |approximate | date ) .            
## [doc0102] I , bishop of Rome ( |approximate | date according to Ro
## [doc0103] r of Kushan Empire ( |approximate | date ) Sextus Julius
## [doc0105] Catholic tradition ( |approximate | date ) .            
## [doc0106] is Taktike Theoria ( |approximate | date ) .            
## [doc0106] rm Catholic Church ( |approximate | date ) .            
## [doc0115] I , bishop of Rome ( |approximate | date ) Dio Chrysosto
## [doc0116] , ruler of Osroene ( |approximate | date ) Ban Zhao , fe
## [doc0118]  , Italy , is made ( |approximate | date ) .            
## [doc0118] starts to be built ( |approximate | date ) .            
## [doc0119] n slave and martyr ( |approximate | date )              
## [doc0119] , Roman politician ( |approximate | date ) Marina of Agu
## [doc0120] shop and apologist ( |approximate | date ) Lucian , Syri
## [doc0120]                      |Approximate | date Legio IX Hispan
## [doc0124] Catholic tradition ( |approximate | date )              
## [doc0124] r , public speaker ( |approximate | date ) Marcus Annius
## [doc0125] starts to be built ( |approximate | date ) .            
## [doc0125] hor and grammarian ( |approximate | date ) Lucian , Syri
## [doc0127] e in Kushan Empire ( |approximate | date ) .            
## [doc0133] ishop of Jerusalem ( |approximate | date )              
## [doc0140] ader of Marcomanni ( |approximate | date ) Zhang Jiao , 
## [doc0140] letes his Almagest ( |approximate | date ) .            
## [doc0142] s , bishop of Rome ( |approximate | date )              
## [doc0147] of Marcus Aurelius ( |approximate | date ) Jia Xu ( or W
## [doc0150] en Pauline letters ( |approximate | date ) .            
## [doc0150] , Roman politician ( |approximate | date ) Monoimus , Ar
## [doc0150] eography ) is made ( |approximate | date ) .            
## [doc0150]  civilization ends ( |approximate | date ) .            
## [doc0150]         This is also |approximate | date of completion o
## [doc0150] <U+03C1>f<U+03C9>se<U+03C9><U+03BD> S<U+03C5><U+03BD>a<U+03B3><U+03C9><U+03B3><U+03B7> ) ( |approximate | date ) .            
## [doc0151]  , Christian saint ( |approximate | date )              
## [doc0154] s I , pope of Rome ( |approximate | date )              
## [doc0154] comes pope of Rome ( |approximate | date ) .            
## [doc0160] nder of Marcionism ( |approximate | date ) Suetonius , R
## [doc0165] storian and writer ( |approximate | date ) Chadea , Kore
## [doc0167] shop of Hieropolis ( |approximate | date ) Anicetus , po
## [doc0168] tus , pope of Rome ( |approximate | date ) Chen Fan , Ch
## [doc0169] ishop of Byzantium ( |approximate | date )              
## [doc0170]                    ( |approximate | date ) [ ] Guo Jia ,
## [doc0174] ) , bishop of Rome ( |approximate | date ) Tiberius Juli
## [doc0174] paigns in Pannonia ( |approximate | date ) .            
## [doc0175] Pope Soter as pope ( |approximate | date ) .            
## [doc0175]  d. ) Pope Pontian ( |approximate | date ) of Catholic C
## [doc0176] Capitolini in Rome ( |approximate | date ) .            
## [doc0180]  jurist and writer ( |approximate | date ) Hegesippus , 
## [doc0180] , bishop of Sardis ( |approximate | date ) Pinytus , bis
## [doc0181] Picts in Britannia ( |approximate | date ) .            
## [doc0184] istian scholar and ( |approximate | date )              
## [doc0185] istian scholar and ( |approximate | date )              
## [doc0185]  only four Gospels ( |approximate | date ) .            
## [doc0186] , Roman noblewoman ( |approximate | date ) [ ]          
## [doc0187] ulish rebel leader ( |approximate | date ) Pertinax , bi
## [doc0188] inese rebel leader ( |approximate | date ) Publius Atili
## [doc0190] , Roman politician ( |approximate | date ) Wang Ji ( or 
## [doc0192] nd central Vietnam ( |approximate | date ) .            
## [doc0194]  The Art of Curing ( |approximate | date ) .            
## [doc0194] es to be heretical ( |approximate | date ) .            
## [doc0200] lves into Hinduism ( |approximate | date ) .            
## [doc0209]  in Andhra Pradesh ( |approximate | date ) .            
## [doc0211] onstruction begins ( |approximate | date ) .            
## [doc0214] reek mathematician ( |approximate | date )              
## [doc0216]  Pantaenus , Greek ( |approximate | date ) Zhang Lu , Ch
## [doc0216] Alexandria , Greek ( |approximate | date ) Cui Yan ( or 
## [doc0220]  dancer and singer ( |approximate | year )              
## [doc0227] ac mac Airt begins ( |approximate | ) .                 
## [doc0228] , Christian hermit ( |approximate | date ) Wang Fan , Ch
## [doc0239]  in five languages ( |approximate | date ) .            
## [doc0240] er of Gupta Empire ( |approximate | date ) .            
## [doc0240] reek mathematician ( |approximate | date ) Zenobia , que
## [doc0241] m a house in Syria ( |approximate | date ) .            
## [doc0241]  fought in Ireland ( |approximate | date ) .            
## [doc0243] e mission to China ( |approximate | date ) .            
## [doc0244] ishop of Byzantium ( |approximate | date ) February –   
## [doc0245] tonist philosopher ( |approximate | date ) Ammonius Sacc
## [doc0248] na , Roman empress ( |approximate | date ) Li Liu ( or X
## [doc0250] Tarragona in Spain ( |approximate | date ) .            
## [doc0250]                      |Approximate | date                
## [doc0251] n martyr and saint ( |approximate | date ) Cao Biao , Ch
## [doc0252] rbalissos in Syria ( |approximate | date ) .            
## [doc0257] n religious leader ( |approximate | date ) Jia Nanfeng (
## [doc0260] consul and emperor ( |approximate | date ) Wang Guan ( o
## [doc0260] er Scheldt estuary ( |approximate | date ) .            
## [doc0260] nown date of chess ( |approximate | date ) .            
## [doc0260] shop and historian ( |approximate | date )              
## [doc0261]  Alemanni at Milan ( |approximate | date ) .            
## [doc0262] consul and emperor ( |approximate | date )              
## [doc0265]  , Greek historian ( |approximate | date ) September –  
## [doc0266] rmac mac Airt ends ( |approximate | date ) .            
## [doc0275] d Christian martyr ( |approximate | date ) Aurelian , Ro
## [doc0276] ishop of Nazianzus ( |approximate | date ) Guo Pu , Chin
## [doc0277] llo - Roman martyr ( |approximate | date ) Sima Ai , Chi
## [doc0280] India ) is founded ( |approximate | date ) .            
## [doc0280] d Christian martyr ( |approximate | date )              
## [doc0285] us , Roman usurper ( |approximate | date )              
## [doc0286]  Christian martyrs ( |approximate | date ) Tuoba Xilu , 
## [doc0292] ation of Roman law ( |approximate | date ) .            
## [doc0300] s in Ancient Japan ( |approximate | date ) .            
## [doc0300] come city of Split ( |approximate | date ) .            
## [doc0300]  Basilica , Venice ( |approximate | date ) .            
## [doc0300] ictory over Franks ( |approximate | date ) .            
## [doc0300] developed in India ( |approximate | date ) .            
## [doc0300] reek mathematician ( |approximate | date ) Zhang Hua , C
## [doc0300]  - Roman physician ( |approximate | date )              
## [doc0300] ct in North Africa ( |approximate | date ) .            
## [doc0300]                      |Approximate | date of Synod of Elv
## [doc0300] llo - Roman bishop ( |approximate | date ) Li Shou , Chi
## [doc0300]  invented in China ( |approximate | date ) .            
## [doc0300] tinct from Armenia ( |approximate | date ) .            
## [doc0300]  bishop and martyr ( |approximate | date ) Jia Mi , Chin
## [doc0300] ss becomes extinct ( |approximate | date ) .            
## [doc0300] sionary and bishop ( |approximate | date )              
## [doc0301] ino is established ( |approximate | date ) .            
## [doc0314] rician and sophist ( |approximate | date ) Li Qi , Chine
## [doc0315] bishop of Caesarea ( |approximate | date ) .            
## [doc0315] st and rhetorician ( |approximate | date ) Vettius Agori
## [doc0320] 's Basilica , Rome ( |approximate | date ) .            
## [doc0320] , Christian writer ( |approximate | date ) Sima Bao , pr
## [doc0320]  , Greek physician ( |approximate | date ) Tuoba Shiyiji
## [doc0320] ian and politician ( |approximate | date ) Constans I , 
## [doc0325]  , Roman historian ( |approximate | date ) Procopius , R
## [doc0326] ia ) by Saint Nino ( |approximate | date ) .            
## [doc0327]                      |Approximate | traditional date –  
## [doc0330] bishop of Ethiopia ( |approximate | date ) .            
## [doc0333] Augustine of Hippo ( |approximate | date )              
## [doc0335] n bishop and saint ( |approximate | date ) Magnus Maximu
## [doc0336] , emperor of Japan ( |approximate | date ) October –    
## [doc0336]  in Constantinople ( |approximate | date ) .            
## [doc0337] st monk , traveler ( |approximate | date ) Fú Jian , emp
## [doc0337] triarch of Antioch ( |approximate | date ) May – Constan
## [doc0338] starts to be built ( |approximate | date ) .            
## [doc0339] rea , Greek bishop ( |approximate | date ) Khosrov III (
## [doc0340]  , bishop of Milan ( |approximate | date ) Amphilochius 
## [doc0340]  , Christian saint ( |approximate | date ) Tao Bao ( or 
## [doc0341] ) , Chinese taoist ( |approximate | date ) Paul of Thebe
## [doc0342] , Christian hermit ( |approximate | date ) Tiberius Juli
## [doc0344]  , Chinese painter ( |approximate | date ) Kumarajiva , 
## [doc0344] es period ) begins ( |approximate | year ) and is comple
## [doc0344] ypt , patron Saint ( |approximate | date )              
## [doc0345] ia , historian and ( |approximate | date ) February – Ab
## [doc0346] er , German bishop ( |approximate | date )              
## [doc0347] y , bishop of Gaza ( |approximate | date ) Ursicinus of 
## [doc0347] ranslator of Bible ( |approximate | date ) Eunapius , Gr
## [doc0349]  of Constantinople ( |approximate | date ) Empress Liu ,
## [doc0350] rchbishop of Arles ( |approximate | date ) ; Hypatia of 
## [doc0352]  and Desert Father ( |approximate | date ) April – Juliu
## [doc0354] n hermit and saint ( |approximate | date ) Paulinus of N
## [doc0356] mid-January at age ( |approximate | ) , having preached 
## [doc0359]  Vatican , is made ( |approximate | date ) .            
## [doc0360] nd Christian saint ( |approximate | date ) Saint Mesrob 
## [doc0362]  of Constantius II ( |approximate | date ) Mesrop Mashto
## [doc0363] , Christian writer ( |approximate | date ) Wu Di ( or Li
## [doc0368] t Mother and saint ( |approximate | date ) Juqu Mengxun 
## [doc0369] n queen and regent ( |approximate | date ) Valentinus , 
## [doc0369] yeo invades Baekje ( |approximate | date ) .            
## [doc0370]  , Chinese general ( |approximate | date ) Eudoxius of A
## [doc0371] of Luciferian sect ( |approximate | date )              
## [doc0371] es bishop of Tours ( |approximate | date ) .            
## [doc0373] , Christian bishop ( |approximate | date ) May –        
## [doc0375] tian historian and ( |approximate | date ) Zong Bing ( o
## [doc0377] consul and emperor ( |approximate | date ) Euthymius Gre
## [doc0378] , Christian bishop ( |approximate | date ) August Sebast
## [doc0380] d wife of Arcadius ( |approximate | date ) Alexius , Eas
## [doc0383] h bishop and saint ( |approximate | date ) May – Isaac o
## [doc0384] ughter of Stilicho ( |approximate | date ) Sengzhao , Ch
## [doc0385] tern Roman Emperor ( |approximate | date ) [ ]          
## [doc0385] sionary in Ireland ( |approximate | date ) [ ] Paulus Or
## [doc0386] er of Nestorianism ( |approximate | date ) November –   
## [doc0389]  bishop and martyr ( |approximate | date ) Mao , Chinese
## [doc0389]  Vandals and Alans ( |approximate | date ) [ citation ne
## [doc0390] eda , king of Huns ( |approximate | date ) Gao Yun , duk
## [doc0390] d Christian writer ( |approximate | date ) Romanus of Co
## [doc0391] na , Roman empress ( |approximate | date ) Macarius of E
## [doc0393] rrhus , bishop and ( |approximate | date ) Eunomius of C
## [doc0396] tern Roman Emperor ( |approximate | date )              
## [doc0399]  , Syriac poet and ( |approximate | date ) November – Po
## [doc0400]  Sforzesco , Milan ( |approximate | date ) .            
## [doc0400] um ) lose identity ( |approximate | date ) .            
## [doc0400] magister militum ) ( |approximate | date ) Hydatius , bi
## [doc0401] e of Theodosius II ( |approximate | date )              
## [doc0404] udian , Roman poet ( |approximate | date ) He Fani , emp
## [doc0405] ese writing system ( |approximate | date ) .            
## [doc0405] stern Roman Empire ( |approximate | date ) Salvian , Chr
## [doc0405] , emperor of Japan ( |approximate | date ) Theon of Alex
## [doc0405] cian , dies at age ( |approximate | ) , having been help
## [doc0406] r of Hunnic Empire ( |approximate | date ) ( d. )       
## [doc0406]  priest and martyr ( |approximate | date ) Godigisel , k
## [doc0407] nd bishop of Rouen ( |approximate | date )              
## [doc0409]  , Christian saint ( |approximate | date ) Liu Yikang , 
## [doc0409] rus , Roman consul ( |approximate | date )              
## [doc0410] Thames River . [ ] ( |approximate | date )              
## [doc0410] , emperor of Japan ( |approximate | date ) Maron , Syria
## [doc0410] m , monk and saint ( |approximate | date ) Alaric I , ki
## [doc0410] n and Isle of Mona ( |approximate | date ) .            
## [doc0411] father of Clovis I ( |approximate | date ) September – C
## [doc0414] ishop of Ptolemais ( |approximate | date ) Yujiulü Hulü 
## [doc0415] ntific rationalism ( |approximate | date ) .            
## [doc0415]  Antioch is healed ( |approximate | date ) .            
## [doc0415]  , prefect of Gaul ( |approximate | date )              
## [doc0417] Georgian and Saint ( |approximate | date )              
## [doc0417] of Constantius III ( |approximate | date ) March – Pope 
## [doc0418] , emperor of Japan ( |approximate | date ) December – Po
## [doc0420] tian historian and ( |approximate | date ) Pelagius , Br
## [doc0421] ypt , patron saint ( |approximate | date )              
## [doc0422] ron saint of Paris ( |approximate | date ) Licinia Eudox
## [doc0422]                      |Approximate | date –              
## [doc0422] ch of Santa Sabina ( |approximate | date ) .            
## [doc0422]  monk and traveler ( |approximate | date ) Theudemeres ,
## [doc0423]  of St. Theodosius ( |approximate | date ) August – Hono
## [doc0425]  Byzantine Emperor ( |approximate | date ) November – At
## [doc0426] ia to become ruler ( |approximate | date ) .            
## [doc0427] a , Brythonic king ( |approximate | date ) Qi Gaodi , Ch
## [doc0430] ia , Roman Empress ( |approximate | date ) Sidonius Apol
## [doc0430] sionary expedition ( |approximate | date ) .            
## [doc0430] , bishop and saint ( |approximate | date ) Octar , Hunni
## [doc0431] f Byzantine Empire ( |approximate | date ) Odoacer , fir
## [doc0432] ionary in Scotland ( |approximate | date )              
## [doc0432] time in Alexandria ( |approximate | date ) .            
## [doc0434] ila , king of Huns ( |approximate | date )              
## [doc0435] ius , British monk ( |approximate | date ) Philip of Sid
## [doc0436] ing of Burgundians ( |approximate | date )              
## [doc0437] g of Salian Franks ( |approximate | date ) Remigius , bi
## [doc0438] queen of Thuringia ( |approximate | date ) Epiphanius , 
## [doc0440] dary Buddhist monk ( |approximate | date ) Euric , Visig
## [doc0440] ndian subcontinent ( |approximate | date ) .            
## [doc0442] of Valentinian III ( |approximate | date ) Angelus Daemo
## [doc0445] King Bleda of Huns ( |approximate | date ) Fan Ye , Chin
## [doc0446]  of Constantinople ( |approximate | date )              
## [doc0448] la , king of Suebi ( |approximate | date ) Saint Germanu
## [doc0449] s , bishop of Lyon ( |approximate | date ) Hilary , bish
## [doc0449] ot of Condat Abbey ( |approximate | date ) Kavadh I , ki
## [doc0450] Old English period ( |approximate | date ) .            
## [doc0450] chbishop of Vienne ( |approximate | date ) ( d. ) Chilpe
## [doc0450]     Pope Hormisdas ( |approximate | date ) Thrasamund , 
## [doc0450] , church historian ( |approximate | date )              
## [doc0450] father of Clovis I ( |approximate | date ) ( b.390 ) Kal
## [doc0450] a ( Italy ) begins ( |approximate | date ) .            
## [doc0450] India ) is founded ( |approximate | date ) .            
## [doc0450] tonist philosopher ( |approximate | date )              
## [doc0450]  Byzantine Empress ( |approximate | date )              
## [doc0451] Irish patron saint ( |approximate | date ) Jacob of Seru
## [doc0452]  I , king of Picts ( |approximate | date ) Nan'an Yinwan
## [doc0452] ing of Burgundians ( |approximate | date ) John Silent ,
## [doc0453] , emperor of Japan ( |approximate | date ) Kinashi , pri
## [doc0453]  , Frankish bishop ( |approximate | date ) July –       
## [doc0453] s own blood at age ( |approximate | ) .                 
## [doc0454] of Valentinian III ( |approximate | date ) Dioscorus Gre
## [doc0455] ococcus pneumoniae ( |approximate | date ) .            
## [doc0455] ninsula ( Mexico ) ( |approximate | date ) .            
## [doc0455] d son of Vortigern ( |approximate | date ) Horsa , leade
## [doc0455] archbishop of Lyon ( |approximate | date ) Wang Baoming 
## [doc0455] to barbarian raids ( |approximate | date ) .            
## [doc0456]  I , king of Picts ( |approximate | date )              
## [doc0456]  and archimandrite ( |approximate | date ) Rechiar , kin
## [doc0456] eror Anko of Japan ( |approximate | date )              
## [doc0456] re almost everyone ( |approximate | date ) .            
## [doc0457]  bishop of Ireland ( |approximate | date ) Saint Proteri
## [doc0457] g of Salian Franks ( |approximate | date )              
## [doc0457] shop of Vermandois ( |approximate | date ) January –    
## [doc0458] yrian neoplatonist ( |approximate | date ) Xiao Zhangmao
## [doc0459] of Sasanian Empire ( |approximate | date ) Vortigern , k
## [doc0459] ed bishop of Reims ( |approximate | date ) .            
## [doc0460] Shanxi ) , is made ( |approximate | date ) .            
## [doc0460]  warlike Isaurians ( |approximate | date ) .            
## [doc0460] , king of Brittany ( |approximate | date ) Hilderic , ki
## [doc0460]  in Persian Empire ( |approximate | date ) .            
## [doc0461] dies at Rome , age ( |approximate | ) , after a - year r
## [doc0461]  , king of Vandals ( |approximate | date ) Romulus Augus
## [doc0462] tician Zu Chongzhi ( |approximate | date ) .            
## [doc0463] ic king of Galicia ( |approximate | date ) Richimund , S
## [doc0464] father of Mohammed ( |approximate | date ) Wu Di , Chine
## [doc0465] , Roman aristocrat ( |approximate | date ) Procopius of 
## [doc0465] , bishop and saint ( |approximate | date )              
## [doc0465] triarch of Antioch ( |approximate | date ) .            
## [doc0466]  , king of Britons ( |approximate | date ) Clovis I , fi
## [doc0466]  daughter of Leo I ( |approximate | date ) .            
## [doc0466] stem of governance ( |approximate | date ) .            
## [doc0467] glo - Saxon Wessex ( |approximate | date ) Leo II , Byza
## [doc0467] agh , Irish bishop ( |approximate | date ) Skandagupta ,
## [doc0467]  Wansdyke is built ( |approximate | date ) .            
## [doc0468] h prince and saint ( |approximate | date ) February , – 
## [doc0469] ich , king of Huns ( |approximate | date ) Hydatius , bi
## [doc0470]  , bishop of Arles ( |approximate | date ) Dionysius Exi
## [doc0470]  in Northern Italy ( |approximate | date ) .            
## [doc0470] ome is consecrated ( |approximate | date ) .            
## [doc0471] of Valentinian III ( |approximate | date ) Julius Patric
## [doc0471] sells into slavery ( |approximate | date ) .            
## [doc0472] ic abbot and saint ( |approximate | date ) July – Anthem
## [doc0473]  , title of Caesar ( |approximate | date ) .            
## [doc0473] , king of Burgundy ( |approximate | date )              
## [doc0474] stian monk , saint ( |approximate | date ) Anthemius of 
## [doc0474] king of Ostrogoths ( |approximate | date )              
## [doc0475]  La<U+1E45>kavatara Sutra ( |approximate | date ) . [ ]        
## [doc0475] a period ) is made ( |approximate | date ) .            
## [doc0475] lleedy , Irish nun ( |approximate | date ) [ ]          
## [doc0475] ez , Roman senator ( |approximate | date ) [ ]          
## [doc0478] h bishop and saint ( |approximate | date )              
## [doc0480]  king of Thuringii ( |approximate | date ) Benedict of N
## [doc0480] ermanus of Auxerre ( |approximate | date ) .            
## [doc0480] Loire to Gibraltar ( |approximate | date ) .            
## [doc0480] a , Brythonic king ( |approximate | date ) Julius Nepos 
## [doc0482] gh King of Ireland ( |approximate | date ) Qi Gaodi , Ch
## [doc0484] nd other penalties ( |approximate | date ) .            
## [doc0484] wife of Belisarius ( |approximate | date ) Brendan , Iri
## [doc0485] atesman and writer ( |approximate | date ) Samson of Dol
## [doc0485]  for invincibility ( |approximate | date ) .            
## [doc0486] n official in Gaul ( |approximate | date )              
## [doc0487] , emperor of Japan ( |approximate | date ) Syagrius , ki
## [doc0490] dist , Syrian poet ( |approximate | date ) Vigilantia , 
## [doc0491]                      |Approximate | date - John Malalas 
## [doc0493]              March ( |approximate | date ) –            
## [doc0493] ishop of Populonia ( |approximate | date ) Erzhu Rong , 
## [doc0494] storian and priest ( |approximate | date ) Xiao Zhaowen 
## [doc0495] ntha of Ostrogoths ( |approximate | date ) King Chlodome
## [doc0495]     I of Austrasia ( |approximate | date ) Fráech mac Fi
## [doc0497]  in Constantinople ( |approximate | date ) .            
## [doc0497] elsh abbot , saint ( |approximate | date ) Chlothar I , 
## [doc0499]  , queen of Franks ( |approximate | date ) Ly Thien Bao 
## [doc0500]  Kingdom is formed ( |approximate | date ) .            
## [doc0500] al lands in Arabia ( |approximate | date ) .            
## [doc0500]                      |Approximate | year of invention of
## [doc0500]   Uxmal is founded ( |approximate | date ) .            
## [doc0500] Bible , is written ( |approximate | date ) .            
## [doc0500] ssionary and saint ( |approximate | date ) Nonnosus , ab
## [doc0500] rber tribal leader ( |approximate | date ) Aregund , que
## [doc0500] tacomb burials end ( |approximate | date ) .            
## [doc0500]                      |Approximate | year of founding of 
## [doc0500]  Byzantine general ( |approximate | date ) Bhavyaviveka 
## [doc0500]   Tikal is founded ( |approximate | date ) .            
## [doc0500]                      |Approximate | beginning of Heptarc
## [doc0500] is built in Sweden ( |approximate | date ) .            
## [doc0500] y Cerdic of Wessex ( |approximate | date ; suggested dat
## [doc0501] d study on anatomy ( |approximate | date ) .            
## [doc0502] bject to same laws ( |approximate | date ) .            
## [doc0502] ron saint of Paris ( |approximate | date )              
## [doc0502]  , Syrian poet and ( |approximate | date ) Vakhtang I of
## [doc0504] heastern Maya city ( |approximate | date ) .            
## [doc0505] ian monk and abbot ( |approximate | date ) Dynod Bwr , k
## [doc0507]  , Armenian bishop ( |approximate | date ) Wen Di , empe
## [doc0508] , king of Dumnonia ( |approximate | date ) Natanleod , k
## [doc0510] enian missionaries ( |approximate | date ) .            
## [doc0510]  , abbot and saint ( |approximate | date ) Gildas , Celt
## [doc0511] Visigothic Kingdom ( |approximate | date ) - Theodoric n
## [doc0512] h bishop and saint ( |approximate | date ) Eutychius , p
## [doc0513]  king of Visigoths ( |approximate | date ) Shen Yue , Ch
## [doc0514] is father 's death ( |approximate | date ) .            
## [doc0514] x , king of Sussex ( |approximate | date ) Jayavarman , 
## [doc0515]  praise of God . [ ] |Approximate | date – Cainnech of A
## [doc0516] ac , king of Geats ( |approximate | date ) John , Coptic
## [doc0517] I , king of Franks ( |approximate | date ) Ebrulf , Fran
## [doc0517] tics and astronomy ( |approximate | date ) .            
## [doc0518] ueen of Ostrogoths ( |approximate | date ) Mungo , Bryth
## [doc0518] early women saints ( |approximate | date ) Sanghapala , 
## [doc0518] lo - Roman senator ( |approximate | date ) Yu Zhong , of
## [doc0520] venna , is started ( |approximate | date ) .            
## [doc0520] alo , Welsh bishop ( |approximate | date ) Martin of Bra
## [doc0520] n part of The Fens ( |approximate | date ) .            
## [doc0520]  , to claim Breton ( |approximate | date ) .            
## [doc0520] tonist philosopher ( |approximate | date ) Maximinus , F
## [doc0521] , bishop of Verdun ( |approximate | date ) Gao Cheng , h
## [doc0522] Merovingian prince ( |approximate | date ) Wen Di , empe
## [doc0523] ession a courtesan ( |approximate | date ) .            
## [doc0524] tion of Philosophy ( |approximate | date ) .            
## [doc0525]  settled by Angles ( |approximate | date ) .            
## [doc0525] al of Northern Wei ( |approximate | date ) Yusuf Dhu Nuw
## [doc0525] ralles , physician ( |approximate | date ) Pope Benedict
## [doc0525] ith stone carvings ( |approximate | date ) .            
## [doc0527] uthern territories ( |approximate | date ) .            
## [doc0527] irst king of Essex ( |approximate | date ) , defeating O
## [doc0527] s a state religion ( |approximate | date ) .            
## [doc0528] ughter of Olybrius ( |approximate | date ) Bodhidharma ,
## [doc0530] II , king of Picts ( |approximate | date ) Erzhu Rong , 
## [doc0530] gaill , Irish poet ( |approximate | date ) Sophia , Byza
## [doc0530] n to Liang Dynasty ( |approximate | date ) .            
## [doc0530] useum in Jerusalem ( |approximate | date ) .            
## [doc0530]  look for Americas ( |approximate | date ) .            
## [doc0531] IV , king of Picts ( |approximate | date ) Hermanafrid ,
## [doc0532] Riata ( Scotland ) ( |approximate | date ) Guntram , kin
## [doc0532] incess of Burgundy ( |approximate | date ) Hypatius , By
## [doc0532]  bishop of Ravenna ( |approximate | date ) Erzhu Shilong
## [doc0533]  of Ruspe , bishop ( |approximate | date ) Hilderic , ki
## [doc0534] n Gloria Romanorum ( |approximate | date ) .            
## [doc0534] iesin , Welsh poet ( |approximate | date ) October – Ath
## [doc0534]  bishop of Seville ( |approximate | date ) Liu Jingyan ,
## [doc0535]  king of Austrasia ( |approximate | date ) Xiao Zhao Di 
## [doc0535]  king of Austrasia ( |approximate | date )              
## [doc0535]  and art historian ( |approximate | date ) Xu Mian , off
## [doc0535] s , Syrian scholar ( |approximate | date )              
## [doc0537] f , bishop of Metz ( |approximate | date ) Chen Chang , 
## [doc0538] s from her convent ( |approximate | date ) .            
## [doc0538] am , king of Picts ( |approximate | date ) Comgall mac D
## [doc0538] urch in Alexandria ( |approximate | date ) .            
## [doc0539] , king of Neustria ( |approximate | date ) Maurice , emp
## [doc0540] isigoth chronicler ( |approximate | date ) Myrddin Wyllt
## [doc0540] be sole occupation ( |approximate | date ) .            
## [doc0540] epts for his monks ( |approximate | date ) .            
## [doc0540] , king of Lombards ( |approximate | date ) Columbanus , 
## [doc0541] s bishop of Edessa ( |approximate | date ) .            
## [doc0541] le of Hephthalites ( |approximate | date ) .            
## [doc0542] nquestu Britanniae ( |approximate | date ) .            
## [doc0542]  Eileach an Naoimh ( |approximate | date ) .            
## [doc0543]                  [ ] |Approximate | date –              
## [doc0543] queen of Austrasia ( |approximate | date ) Columbanus , 
## [doc0543] in in Central Asia ( |approximate | date ) .            
## [doc0543] cluding Old Church ( |approximate | date ) .            
## [doc0544] na , Cornish saint ( |approximate | date ) Dionysius Exi
## [doc0545] zantine rebel leader |Approximate | date Budic II , king
## [doc0545] in favour of David ( |approximate | date ) .            
## [doc0545] r on River Shannon ( |approximate | date ) .            
## [doc0546]                      |Approximate | date –              
## [doc0547] venna ) , are made ( |approximate | date ) .            
## [doc0547]  , king of Gwynedd ( |approximate | date ) Theudebert I 
## [doc0548] Southern Dynasties ( |approximate | date ) April –      
## [doc0548] of pepper in India ( |approximate | date ) .            
## [doc0550] Guatemala ) begins ( |approximate | date ) .            
## [doc0550]  regional kingdoms ( |approximate | date ) .            
## [doc0550] is Ravina and Ashi ( |approximate | date ) .            
## [doc0550] of imperial palace ( |approximate | date ) .            
## [doc0550] tes Secret History ( |approximate | date ) .            
## [doc0550]                 IV ( |approximate | date ) Finbarr of Co
## [doc0550] ristianity in East ( |approximate | date ) .            
## [doc0551]  church father and ( |approximate | date ) Germanus , By
## [doc0551] and Deeds of Goths ( |approximate | date ) .            
## [doc0552] retwalda ) of Kent ( |approximate | date )              
## [doc0552] arch of Alexandria ( |approximate | date ) February – Da
## [doc0554] astery at Vivarium ( |approximate | date ) . [ ] exact d
## [doc0555] dictine and hermit ( |approximate | date ) Fatimah bint 
## [doc0555] stery in Caer Gybi ( |approximate | date ) .            
## [doc0555]  Brochwel of Powys ( |approximate | date ) .            
## [doc0555] o Gwent and Ergyng ( |approximate | date ) . [ ] Summer 
## [doc0556] dist , Syrian poet ( |approximate | date ) Xiao Yuanming
## [doc0558] a , Christian monk ( |approximate | date ) Empress Dugu 
## [doc0558] n Northern Ireland ( |approximate | date ) .            
## [doc0559] , king of Bernicia ( |approximate | date ) Leonard of No
## [doc0560] s king of Bernicia ( |approximate | date ) .            
## [doc0560]  Byzantine empress ( |approximate | date ) Eustace of Lu
## [doc0560]  as king of Wessex ( |approximate | date ) .            
## [doc0560] , king of Bernicia ( |approximate | date )              
## [doc0560] d , king of Gepids ( |approximate | date ) Yang Yin , of
## [doc0561]  Southern Uí Néill ( |approximate | date ) .            
## [doc0562] yzantine historian ( |approximate | date ) Xuan Di , emp
## [doc0562] from Reims to Metz ( |approximate | date ) .            
## [doc0564] c prince and saint ( |approximate | date ) Tudwal , Bret
## [doc0564]  , Visigoth prince ( |approximate | date )              
## [doc0564] eral royal decrees ( |approximate | date ) .            
## [doc0564] and is made bishop ( |approximate | date ) .            
## [doc0565] , prince of Wessex ( |approximate | date ) Gundoald , Ba
## [doc0565] s of Northern Zhou ( |approximate | date )              
## [doc0565] ves life of a Pict ( |approximate | date ) .            
## [doc0565]                    ( |approximate | date ) .            
## [doc0565] ry in Central Asia ( |approximate | date ) .            
## [doc0565] ction of Holy Land ( |approximate | date ) .            
## [doc0565]  king of Visigoths ( |approximate | date ) Witteric , ki
## [doc0565]  in Orkney Islands ( |approximate | date ) .            
## [doc0566]  uncle of Muhammad ( |approximate | date ) Li Yuan , Emp
## [doc0568] , king of Bernicia ( |approximate | date )              
## [doc0568] n eastern frontier ( |approximate | date ) .            
## [doc0568] rules from 568–572 ( |approximate | date ) .            
## [doc0568] o Byzantine Empire ( |approximate | date ) .            
## [doc0569] rst duke of Friuli ( |approximate | date ) .            
## [doc0569]  of Eastern Saints ( |approximate | date ) .            
## [doc0570] wife of Belisarius ( |approximate | date ) Armel , Breto
## [doc0570] f Spear of Destiny ( |approximate | date ) .            
## [doc0570]  chieftain Faroald ( |approximate | date ) .            
## [doc0570] s created in Henan ( |approximate | date ) .            
## [doc0570] Bryneich and Elmet ( |approximate | date ) .            
## [doc0570] ce of Chen Dynasty ( |approximate | date ) Childebert II
## [doc0571]  royal genealogies ( |approximate | date ) .            
## [doc0571] rd chieftain Zotto ( |approximate | date ) .            
## [doc0571] Visigothic Kingdom ( |approximate | date ) .            
## [doc0572] yzantine epic poet ( |approximate | date ) Eochaid mac D
## [doc0573] bs along Via Appia ( |approximate | date ) .            
## [doc0573] as bishop of Tours ( |approximate | date ) .            
## [doc0573] kr , Muslim Caliph ( |approximate | date ) Chen Yin , cr
## [doc0573] Birr , Irish abbot ( |approximate | date ) Gwenddoleu ap
## [doc0574] Riata ( Scotland ) ( |approximate | Date ) .            
## [doc0575] f Byzantine Empire ( |approximate | date ) Wen Yanbo , c
## [doc0575] Visigothic Kingdom ( |approximate | date ) .            
## [doc0575] decim de re Medica ( |approximate | date ) .            
## [doc0575]  king of Austrasia ( |approximate | date )              
## [doc0575] idgeshire Fens [ ] ( |approximate | date ) .            
## [doc0576] friend of Muhammad ( |approximate | date ) Gao Shilian ,
## [doc0576] d in central Spain ( |approximate | date ) .            
## [doc0577]  a Byzantine fleet ( |approximate | date ) .            
## [doc0577]        Pope Agatho ( |approximate | date ) Princess Ning
## [doc0577] a Christian church ( |approximate | date ) .            
## [doc0578]                      |Approximate | date - Bhavyaviveka 
## [doc0578] ing of East Anglia ( |approximate | date ) Yuwen Xian , 
## [doc0579] rules from 579–585 ( |approximate | date ) .            
## [doc0579] s against Arianism ( |approximate | date ) .            
## [doc0580] sh queen Fredegund ( |approximate | date ) .            
## [doc0580]  , king of Gwynedd ( |approximate | date ) Clemen ap Ble
## [doc0580] , wife of Muhammad ( |approximate | date ) Wei Zheng , c
## [doc0580] retwalda ) of Kent ( |approximate | date ) .            
## [doc0581] se medicine doctor ( |approximate | date )              
## [doc0581] during Sui Dynasty ( |approximate | date ) .            
## [doc0581] ncubine of Gao Wei ( |approximate | date ) Jing Di , Chi
## [doc0582] h bishop and saint ( |approximate | date ) Li Mi , Chine
## [doc0582] f Frankish Kingdom ( |approximate | date ) .            
## [doc0582] poet and historian ( |approximate | date ) Ashina , empr
## [doc0583] zantine co-emperor ( |approximate | date ) Umar , compan
## [doc0583] ro , king of Suevi ( |approximate | date )              
## [doc0583] to Japan and Korea ( |approximate | date ) .            
## [doc0584] , bishop and saint ( |approximate | date ) Chlothar II ,
## [doc0584] bot and saint ( b. ) |Approximate | date – Bridei I , ki
## [doc0584] tryside in revenge ( |approximate | date ) .            
## [doc0584] laims himself king ( |approximate | date ) .            
## [doc0585] atesman and writer ( |approximate | date ) Frithuwald , 
## [doc0585]  priest and hermit ( |approximate | date ) Yang Jian , i
## [doc0585] s king of Bernicia ( |approximate | date ) .            
## [doc0585] urt of Sui Dynasty ( |approximate | date ) .            
## [doc0586] nce of Sui dynasty ( |approximate | date ) April –      
## [doc0586] yzantine chronicle ( |approximate | date ) .            
## [doc0587] of Avars and Slavs ( |approximate | date ) .            
## [doc0587] n Visigothic Spain ( |approximate | date ) .            
## [doc0587]  Duke of Alemannia ( |approximate | date ) .            
## [doc0587] e as king of Essex ( |approximate | date ) .            
## [doc0587] ne , king of Essex ( |approximate | date ) Ishbara Qagha
## [doc0588] la , king of Deira ( |approximate | date ) Agericus , bi
## [doc0588] , bishop and saint ( |approximate | date ) Suintila , ki
## [doc0588] f coast of Ireland ( |approximate | date ) .            
## [doc0588] le of King Authari ( |approximate | date ) .            
## [doc0590] arch of Alexandria ( |approximate | date ) Boran , Queen
## [doc0590] h king of Domnonée ( |approximate | ) Kavadh II , king o
## [doc0590] Iberia ( Georgia ) ( |approximate | date ) .            
## [doc0590] n Northern England ( |approximate | date ) .            
## [doc0590] dom in South India ( |approximate | date ) .            
## [doc0591]  Byzantine general ( |approximate | date ) Peter III of 
## [doc0591]  in Northern Italy ( |approximate | date ) .            
## [doc0591]  , king of Gwynedd ( |approximate | date ) Gundeberga , 
## [doc0592] lid , Arab general ( |approximate | date ) Asma ' bint A
## [doc0593]  as king of Mercia ( |approximate | date ) .            
## [doc0593] n , king of Wessex ( |approximate | date )              
## [doc0593] a , king of Mercia ( |approximate | date ) Eberigisil , 
## [doc0594]                      |Approximate | date –              
## [doc0594] iarch of Jerusalem ( |approximate | date )              
## [doc0594] n of Muhammad ( d. ) |approximate | date Ali ibn Abi Tal
## [doc0595] panion of Muhammad ( |approximate | date ) Zaynab bint K
## [doc0595] ily flees to Powys ( |approximate | date ) .            
## [doc0597] or personal injury ( |approximate | date ) .            
## [doc0597] h missionary saint ( |approximate | date )              
## [doc0598] n Northern England ( |approximate | date ) .            
## [doc0598] r be British Isles ( |approximate | date ) .            
## [doc0599] archate of Ravenna ( |approximate | date ) .            
## [doc0599] erpent of Calakmul ( |approximate | date ) .            
## [doc0599] n , Brythonic poet ( |approximate | date ) Tulan Qaghan 
## [doc0599] ea trade with East ( |approximate | date ) .            
## [doc0600] ope for first time ( |approximate | date ) .            
## [doc0600] s killed by locals ( |approximate | date ) .            
## [doc0600] h and Shi‘ ah imam ( |approximate | date ) Audomar , bis
## [doc0600] s become Christian ( |approximate | date ) .            
## [doc0600] shop of Maastricht ( |approximate | date ) Wandregisel ,
## [doc0600] nt to Christianity ( |approximate | date ) .            
## [doc0600] otland and Germany ( |approximate | date ) .            
## [doc0600] out million people ( |approximate | date ) .            
## [doc0600] ished in The Andes ( |approximate | date ) The Middle Ho
## [doc0600] lls for irrigation ( |approximate | date ) .            
## [doc0600]  II , at Dormelles ( |approximate | date ) .            
## [doc0600] rial China is sent ( |approximate | date ) .            
## [doc0600]  , Chinese painter ( |approximate | date ) March - Leand
## [doc0600]  new king of Tibet ( |approximate | date ) .            
## [doc0600] ture ends in Andes ( |approximate | date ) .            
## [doc0600] rent form in India ( |approximate | date ) .            
## [doc0600] e of Joya de Cerén ( |approximate | date ) .            
## [doc0600] e dominant culture ( |approximate | date ) .            
## [doc0600] ture ends in Andes ( |approximate | date ) .            
## [doc0601] nized ( b. c.565 ) ( |approximate | date )              
## [doc0601] ne Empress consort ( |approximate | date )              
## [doc0603] i , Muslim scholar ( |approximate | date ) Dagobert I , 
## [doc0604] ic , king of Deira ( |approximate | date ) Berthoald , M
## [doc0604] a ) of Northumbria ( |approximate | date ) March – Grego
## [doc0605]  Byzantine empress ( |approximate | date ) Damian , Copt
## [doc0605]  no longer guarded ( |approximate | date ) .            
## [doc0605] hop of Lindisfarne ( |approximate | date ) Fatimah , dau
## [doc0606]  - day Murshidabad ( |approximate | date ) .            
## [doc0606] mes a patriarchate ( |approximate | date ) .            
## [doc0606] a , king of Mercia ( |approximate | date ) Yang Su , gen
## [doc0607] chbishop of Vienne ( |approximate | date ) Gao Jiong , g
## [doc0607] details or outcome ( |approximate | date ) .            
## [doc0608] ns to Chalcedonism ( |approximate | date ) .            
## [doc0608]  king of Aquitaine ( |approximate | date ) Philibert of 
## [doc0609] n Turkic Khaganate ( |approximate | date ) .            
## [doc0609] , wife of Muhammad ( |approximate | date )              
## [doc0610] arch of Alexandria ( |approximate | date ) .            
## [doc0610] ishop of Benevento ( |approximate | date ) Ergica , king
## [doc0610] e from Early Slavs ( |approximate | date ) .            
## [doc0610] s duchy is overrun ( |approximate | date ) .            
## [doc0610]  priest , Dam Jing ( |approximate | date ) .            
## [doc0611] d , Bishop of Metz ( |approximate | date ) Ceolwulf , ki
## [doc0611] given Upper Wessex ( |approximate | date ) .            
## [doc0612] onastery of Bobbio ( |approximate | date ) .            
## [doc0612] n , Frankish abbot ( |approximate | date ) K'ak ' Chan Y
## [doc0613]  kingdom of Chenla ( |approximate | date ) .            
## [doc0614] o - Saxon princess ( |approximate | date ) Fujiwara no K
## [doc0614]  , Frankish abbess ( |approximate | date ) General Xue R
## [doc0614] , abbess and saint ( |approximate | date ) Li Yifu , cha
## [doc0614] f Byzantine Empire ( |approximate | date ) .            
## [doc0615]  , bishop of Autun ( |approximate | date ) Li Jingxuan ,
## [doc0615] rincess and abbess ( |approximate | date ) Begga , Frank
## [doc0616] ondon ) is founded ( |approximate | date ) .            
## [doc0616] II , king of Picts ( |approximate | date )              
## [doc0616]  Wales , is fought ( |approximate | date ) .            
## [doc0616] rt , king of Essex ( |approximate | date ) Secundus of N
## [doc0616] ing of Northumbria ( |approximate | date ) Agilulf , kin
## [doc0616]  Gwynedd ( Wales ) ( |approximate | date ) .            
## [doc0617] h kingdom of Elmet ( |approximate | date ) .            
## [doc0617] rd , king of Essex ( |approximate | date )              
## [doc0617] , hermit and abbot ( |approximate | date ) Yang Yichen ,
## [doc0617] ed , king of Essex ( |approximate | date ) Tasso , duke 
## [doc0618] en , king of Tibet ( |approximate | date )              
## [doc0619] ce of Tang dynasty ( |approximate | date ) February – La
## [doc0619]  and Lower Austria ( |approximate | date ) .            
## [doc0619] arch of Alexandria ( |approximate | date ) Khadija bint 
## [doc0620] , bishop of London ( |approximate | date ) Basolus , Fra
## [doc0621] under Tang Dynasty ( |approximate | date ) .            
## [doc0622] isigoth chronicler ( |approximate | date ) Li Zitong , r
## [doc0623] ns , French bishop ( |approximate | date ) Pingyang , pr
## [doc0623] uring Asuka period ( |approximate | date ) .            
## [doc0624] ersian Empire ( d. ) |Approximate | date – Adomnán , Iri
## [doc0624]  uncle of Muhammad ( |approximate | date ) Du Fuwei , re
## [doc0624] dom of East Anglia ( |approximate | date ) .            
## [doc0624] ing of East Anglia ( |approximate | date ) Ruqayyah , da
## [doc0625] ld , king of Deira ( |approximate | date ) Theodo II , d
## [doc0625]  his son Cadwallon ( |approximate | date ) .            
## [doc0626]  bishop of Cambrai ( |approximate | date ) Sexred , king
## [doc0626] win of Northumbria ( |approximate | date ) .            
## [doc0626]  , queen of Franks ( |approximate | date ) Heraklonas , 
## [doc0626] mes king of Mercia ( |approximate | date ) .            
## [doc0626] , king of Lombards ( |approximate | date ) Cearl , king 
## [doc0627] ald of East Anglia ( |approximate | date )              
## [doc0627] ishes in Austrasia ( |approximate | date ) .            
## [doc0628] and patriarch ( d. ) |Approximate | date Benedict Biscop
## [doc0628] wife of Khosrow II ( |approximate | date ) Suibne Menn ,
## [doc0628] Jews by Mosaic law ( |approximate | date ) .            
## [doc0629]  - eastern Ireland ( |approximate | date ) .            
## [doc0630] ing of East Anglia ( |approximate | date ) Nicolle , Dav
## [doc0630] th , king of Deira ( |approximate | date ) Conon I , pop
## [doc0631] northwestern India ( |approximate | date ) .            
## [doc0631] , emperor of Japan ( |approximate | date )              
## [doc0631] lled Anglian Tower ( |approximate | date ) .            
## [doc0631]  ) which still pay ( |approximate | date ) .            
## [doc0632]  bishop of Cambrai ( |approximate | date ) January – Máe
## [doc0632]              March ( |approximate | ) –                 
## [doc0633] nchai ( Thailand ) ( |approximate | date ) Wilfrid , Ang
## [doc0633] n armillary sphere ( |approximate | date ) .            
## [doc0634] ing of East Anglia ( |approximate | date ) Akram , Agha 
## [doc0634] ity in Northumbria ( |approximate | date ) .            
## [doc0634]  rule over Bretons ( |approximate | date ) .            
## [doc0634] glo - Saxon bishop ( |approximate | date ) En no Ozunu ,
## [doc0635]  , Mayor of Palace ( |approximate | date ) Yijing , Chin
## [doc0635] two Welsh kingdoms ( |approximate | date ) .            
## [doc0636] panion of Muhammad ( |approximate | date ) Sisenand , ki
## [doc0636] o - Saxon princess ( |approximate | date ) Lambert of Ma
## [doc0636] ing of East Anglia ( |approximate | date ) Cwichelm , ki
## [doc0637] ts to learn Arabic ( |approximate | date ) .            
## [doc0638] becomes a sub-king ( |approximate | date ) .            
## [doc0639]  , Frankish abbess ( |approximate | date ) Aldhelm , bis
## [doc0640] Visigothic Kingdom ( |approximate | date ) .            
## [doc0640]  , bishop of Rouen ( |approximate | date ) Tysilio , Wel
## [doc0640] ald , king of Kent ( |approximate | date )              
## [doc0640] Croatian Provinces ( |approximate | date ) .            
## [doc0640] Akhtal , Arab poet ( |approximate | date ) Arikesari Mar
## [doc0640] o - Saxon princess ( |approximate | date )              
## [doc0640] n Frankish Kingdom ( |approximate | date ) .            
## [doc0640] s parents ' deaths ( |approximate | date ) .            
## [doc0640]  , Frankish martyr ( |approximate | date ) Arnulf of Met
## [doc0641] ther , King Oswald ( |approximate | date ) .            
## [doc0642]  Byzantine emperor ( |approximate | date ) Khalid ibn al
## [doc0642] nglo - Saxon abbot ( |approximate | date ) Hasan al - Ba
## [doc0643] ng Penda of Mercia ( |approximate | date ) .            
## [doc0643] g Dynasty in China ( |approximate | date ) .            
## [doc0643] s , king of Wessex ( |approximate | date ) Maurikios Cha
## [doc0644]  king of Thuringia ( |approximate | date ) Trudpert , Ir
## [doc0645] sophies from China ( |approximate | date ) .            
## [doc0645] d , king of Mercia ( |approximate | date ) Ecgfrith , ki
## [doc0645] uring Tang dynasty ( |approximate | date ) .            
## [doc0645] ues in his kingdom ( |approximate | date ) .            
## [doc0646] leader of Göktürks ( |approximate | date ) January – Sul
## [doc0646] , Irish missionary ( |approximate | date )              
## [doc0646] , Irish missionary ( |approximate | date ) Zhang Liang ,
## [doc0649]                      |Approximate | date – Wang         
## [doc0650] ults against other ( |approximate | date ) .            
## [doc0650] s , Frankish abbot ( |approximate | date ) Jarir ibn Ati
## [doc0650] nterbury , England ( |approximate | date ) .            
## [doc0650] flees to Magonsæte ( |approximate | date ) .            
## [doc0650] nites two kingdoms ( |approximate | date ) .            
## [doc0650] s of Northern Zhou ( |approximate | date ) Ferchar mac C
## [doc0650] yamaka philosopher ( |approximate | date )              
## [doc0650] ims and Christians ( |approximate | date ) .            
## [doc0650]  Byzantine empress ( |approximate | date ) Dagobert II ,
## [doc0650]  ji Treasure House ( |approximate | date ) .            
## [doc0650] mán Rímid Uí Néill ( |approximate | date ) .            
## [doc0651] I , duke of Friuli ( |approximate | date ) Radoald , duk
## [doc0651] arner royal favour ( |approximate | date ) .            
## [doc0652]  uncle of Muhammad ( |approximate | date ) Abdel Rahman 
## [doc0652] laves at his death ( |approximate | date ) .            
## [doc0652] shop of Regensburg ( |approximate | date )              
## [doc0653] I , king of Franks ( |approximate | date ) Li Xian , pri
## [doc0653] k against Bernicia ( |approximate | date ) .            
## [doc0653]  uncle of Muhammad ( |approximate | date )              
## [doc0653]  , duke of Spoleto ( |approximate | date )              
## [doc0653] s in Naniwa Palace ( |approximate | date ) .            
## [doc0653] , in Central Italy ( |approximate | date ) .            
## [doc0654] glo - Saxon prince ( |approximate | date ) Takamuko no K
## [doc0654] rcian overlordship ( |approximate | date ) .            
## [doc0654]  , Japanese prince ( |approximate | date ) Theuderic III
## [doc0654] ing of East Anglia ( |approximate | date ) Conall Cóel ,
## [doc0655] , Irish missionary ( |approximate | date ) Loingsech mac
## [doc0655] of Catholic Church ( |approximate | date ) .            
## [doc0656]  , bishop of Liège ( |approximate | date ) Zhong Zong , 
## [doc0656] uring Tang Dynasty ( |approximate | date ) .            
## [doc0657] , king of Lombards ( |approximate | date )              
## [doc0658] Rashidun Caliphate ( |approximate | date ) .            
## [doc0658] t at River Parrett ( |approximate | date ) .            
## [doc0658] e as leading power ( |approximate | date ) .            
## [doc0658] rritory in Hungary ( |approximate | date ) .            
## [doc0659] a , king of Wessex ( |approximate | date ) Fujiwara no F
## [doc0660] narch for a period ( |approximate | date ) .            
## [doc0660] II , king of Essex ( |approximate | date ) Xin Maojiang 
## [doc0660] , bishop of Hexham ( |approximate | date ) Genmei , empr
## [doc0661]                  [ ] |Approximate | date – Muawiya I imp
## [doc0661] Arab governor ( d. ) |Approximate | date – Ælfwine , Nor
## [doc0661]                      |Approximate | date –              
## [doc0661]                      |Approximate | date –              
## [doc0661]                      |Approximate | date –              
## [doc0662]  Persian provinces ( |approximate | date ) .            
## [doc0662] ro , Japanese poet ( |approximate | date )              
## [doc0662] over Essex at time ( |approximate | date ) .            
## [doc0662]  , Frankish abbess ( |approximate | date ) Rumwold of Bu
## [doc0663]  Japanese princess ( |approximate | date ) Zhang Yue , c
## [doc0663] lague hits Britain ( |approximate | date ) .            
## [doc0664] ing of East Anglia ( |approximate | date ) Alhfrith , ki
## [doc0664]  Sighere and Sæbbi ( |approximate | date ) . October –  
## [doc0665] s renamed Hansanju ( |approximate | date ) .            
## [doc0665] ndigenous religion ( |approximate | date ) .            
## [doc0666] approval from Rome ( |approximate | date ) .            
## [doc0667] shop of Canterbury ( |approximate | date ) output { font
## [doc0667]  , but is defeated ( |approximate | date ) .            
## [doc0668]  Northern Bulgaria ( |approximate | date ) .            
## [doc0668]  Byzantine general ( |approximate | date )              
## [doc0669] , bishop of Mercia ( |approximate | date ) Mezezius , By
## [doc0669]  Byzantine emperor ( |approximate | date ) Qutayba ibn M
## [doc0669] icated to St. Mary ( |approximate | date ) .            
## [doc0670]  king of Magonsæte ( |approximate | date ) Safiyya bint 
## [doc0670]  River as boundary ( |approximate | date ) .            
## [doc0670] cese of Winchester ( |approximate | date ) .            
## [doc0670]  prepared in Japan ( |approximate | date ) .            
## [doc0670] rovingian princess ( |approximate | date ) Childebert II
## [doc0671]  , Frankish prince ( |approximate | date ) Grimoald I , 
## [doc0672] h , king of Wessex ( |approximate | date ) Jiang Ke , ge
## [doc0672]  vernacular poetry ( |approximate | date ) .            
## [doc0672] ide Wessex amongst ( |approximate | date ) .            
## [doc0672] axon and historian ( |approximate | date ) Chilperic II 
## [doc0673]  , queen of Wessex ( |approximate | date )              
## [doc0673] glo - Saxon bishop ( |approximate | date )              
## [doc0673]  - Saxon anchoress ( |approximate | date )              
## [doc0673] rankish missionary ( |approximate | date )              
## [doc0674]                    ( |approximate | date ) .            
## [doc0674] ik , Muslim caliph ( |approximate | date ) Abu Ayyub al 
## [doc0674] n English churches ( |approximate | date ) .            
## [doc0674] t of siege of city ( |approximate | date ) .            
## [doc0674] as ruler of Wessex ( |approximate | date ) .            
## [doc0674]  , queen of Wessex ( |approximate | date )              
## [doc0675]  duke of Aquitaine ( |approximate | date ) Máel Dub , Ir
## [doc0675]  Tengwang Pavilion ( |approximate | date ) .            
## [doc0675] ngland are founded ( |approximate | date ) .            
## [doc0675] - Saxon missionary ( |approximate | date ) Huoching , Al
## [doc0676] an monk and priest ( |approximate | date ) Muhammad al -
## [doc0677] lik , Arab general ( |approximate | date ) Clovis IV , K
## [doc0678] ion of hostilities ( |approximate | date ) .            
## [doc0678] ne , king of Deira ( |approximate | date ) Aisha , wife 
## [doc0679]  , Frankish prince ( |approximate | date ) Xu Yushi , ch
## [doc0679] ith of Northumbria ( |approximate | date ) .            
## [doc0679] ne , king of Deira ( |approximate | date )              
## [doc0680]                      |Approximate | date Boniface begins
## [doc0680] n North Sea region ( |approximate | date ) .            
## [doc0680]  , Christian saint ( |approximate | date ) Wu Daozi , Ch
## [doc0680] dian mathematician ( |approximate | date ) Cædmon , Nort
## [doc0681]  Umayyad Caliphate ( |approximate | date ) .            
## [doc0682] panion of Muhammad ( |approximate | date ) Zaynab bint A
## [doc0682] ne bases in Africa ( |approximate | date ) .            
## [doc0683] hurch at Brixworth ( |approximate | date ) .            
## [doc0683] ate for first time ( |approximate | date ) .            
## [doc0683]                    ( |approximate | date ) Bilge Khan , 
## [doc0683] s , Frankish abbot ( |approximate | date ) Xue Rengui , 
## [doc0684] ss of Tang Dynasty ( |approximate | date ) Nagaya , Japa
## [doc0685] in Maronite Church ( |approximate | date ) .            
## [doc0685]  , duke of Bavaria ( |approximate | date ) May – Benedic
## [doc0685]  a diplomatic gift ( |approximate | date ) .            
## [doc0685] , king of Asturias ( |approximate | date )              
## [doc0685] e , king of Wessex ( |approximate | date ) Constantine I
## [doc0686] ax from Christians ( |approximate | date ) .            
## [doc0686] ric , king of Kent ( |approximate | date ) Eanflæd , que
## [doc0687] arted in Jerusalem ( |approximate | date ) .            
## [doc0687]  king of Visigoths ( |approximate | date ) Yazid II , Mu
## [doc0689] hmar , Swiss abbot ( |approximate | date ) Roben , Japan
## [doc0689]  in Worcestershire ( |approximate | date ) .            
## [doc0689] trecht and Fechten ( |approximate | date ) .            
## [doc0689] ian , Irish bishop ( |approximate | date ) May – Kusakab
## [doc0690] ine , king of Kent ( |approximate | date ) output { font
## [doc0690]  , Armenian prince ( |approximate | date ) Rhodri Molwyn
## [doc0690] shop of Canterbury ( |approximate | date ) .            
## [doc0690] la , Berber leader ( |approximate | date ) Landrada , Fr
## [doc0690] Lotharingian saint ( |approximate | date ) Benedict Bisc
## [doc0690]                  The |approximate | date of earliest kno
## [doc0690] gainst East Saxons ( |approximate | date ) .            
## [doc0692]  Kan B' alam II to ( |approximate | date ) .            
## [doc0692]  Mediterranean Sea ( |approximate | date ) .            
## [doc0692] ds , Saxon priests ( |approximate | date ) Chrothildis ,
## [doc0693]  western peninsula ( |approximate | date ) .            
## [doc0693] , king of Asturias ( |approximate | date ) Begga , Frank
## [doc0694]  in northern Syria ( |approximate | date ) .            
## [doc0694] iya , Arab scholar ( |approximate | date ) Mildthryth , 
## [doc0694] d , king of Dorset ( |approximate | date ) Rodoald , duk
## [doc0694] eheard and Swæfred ( |approximate | date ) .            
## [doc0695]  numerous churches ( |approximate | date ) .            
## [doc0695] King Ine of Wessex ( |approximate | date ) .            
## [doc0695] tphalia in Germany ( |approximate | date ) .            
## [doc0695] ldorf ) in Germany ( |approximate | date ) .            
## [doc0695] bbi , king of Kent ( |approximate | date )              
## [doc0695]  , Frankish abbess ( |approximate | date ) Kibi no Makib
## [doc0697] ing of Northumbria ( |approximate | date ) Eochaid mac D
## [doc0697] ji Temple in Japan ( |approximate | date ) .            
## [doc0697] rts of Mesopotamia ( |approximate | date ) .            
## [doc0697] oland in North Sea ( |approximate | date ) .            
## [doc0698] l his death around ( |approximate | date ) .            
## [doc0698] ingdom in Hispania ( |approximate | date ) .            
## [doc0698] otland is absorbed ( |approximate | date ) .            
## [doc0698] tar at Lindisfarne ( |approximate | date ) .            
## [doc0698] alhae in Manchuria ( |approximate | date ) .            
## [doc0698] o - Saxon noblemen ( |approximate | date ) Rieul , bisho
## [doc0700] s , Frankish saint ( |approximate | date ) Asparuh of Bu
## [doc0700] ace with ealdormen ( |approximate | date ) .            
## [doc0700] in southern Greece ( |approximate | date ) .            
## [doc0700] de ( Nara period ) ( |approximate | date ) .            
## [doc0700] e southern Ireland ( |approximate | date ) .            
## [doc0700] , Visigothic abbot ( |approximate | date ) Emperor Shomu
## [doc0700] essex trading town ( |approximate | date ) .            
## [doc0700] in Central America ( |approximate | date ) .            
## [doc0700] p John of Beverley ( |approximate | date ) .            
## [doc0700] southern highlands ( |approximate | date ) .            
## [doc0700] i , Muslim general ( |approximate | date ) Adrian I , po
## [doc0700]  and social unrest ( |approximate | date ) .            
## [doc0700]  , Frankish abbess ( |approximate | date ) Hasan ibn al 
## [doc0700] r towards Alemanni ( |approximate | date ) .            
## [doc0700] ance against Arabs ( |approximate | date ) .            
## [doc0701] ican Red Sea coast ( |approximate | date ) .            
## [doc0701]  king of Visigoths ( |approximate | date ) .            
## [doc0701] a ) for first time ( |approximate | date ) .            
## [doc0702] rol of all Morocco ( |approximate | date ) .            
## [doc0702] kish nun and saint ( |approximate | date ) Chen Zi'ang ,
## [doc0703] inese rebel leader ( |approximate | date )              
## [doc0703] glo - Saxon abbess ( |approximate | date )              
## [doc0703] lach mac Rogallaig ( |approximate | date ) .            
## [doc0703] orca , and Menorca ( |approximate | date ) .            
## [doc0704] ances are rejected ( |approximate | date ) .            
## [doc0704] Shi , Chinese poet ( |approximate | date )              
## [doc0705] m , abbot of Fulda ( |approximate | date ) Thingfrith , 
## [doc0705] a , bishop of York ( |approximate | date ) Cellach mac R
## [doc0705] shop of Winchester ( |approximate | date ) Heraclius , B
## [doc0705]  regions of Dorset ( |approximate | date ) .            
## [doc0705]  City of Jerusalem ( |approximate | date ) .            
## [doc0705] aastricht , bishop ( |approximate | date ) Varaz Trdat I
## [doc0707] I , bishop of Metz ( |approximate | date ) Hidulf , bish
## [doc0707] ounded in Damascus ( |approximate | date ) .            
## [doc0707]  Mediterranean Sea ( |approximate | date ) .            
## [doc0708] d medicinal values ( |approximate | date ) .            
## [doc0709]  coast of Normandy ( |approximate | date ) .            
## [doc0709] d , king of Mercia ( |approximate | date ) Bertin , Fran
## [doc0710] , duke of Alemanni ( |approximate | date ) Leoba , Anglo
## [doc0710] s , Frankish abbot ( |approximate | date ) Kakinomoto no
## [doc0710]  king of Visigoths ( |approximate | date )              
## [doc0710] Shumen in Bulgaria ( |approximate | date ) .            
## [doc0711] nas , Arab scholar ( |approximate | date ) Su Zong , emp
## [doc0711]  modern Scotland ) ( |approximate | date ) .            
## [doc0711] Japan is completed ( |approximate | date ) .            
## [doc0711] to wear Iron Crown ( |approximate | date ) .            
## [doc0712] i , Muslim general ( |approximate | date ) Du Fu , Chine
## [doc0712]  bishop of Cambrai ( |approximate | date )              
## [doc0712] hinese sovereignty ( |approximate | date ) .            
## [doc0713]  , mayor of palace ( |approximate | date )              
## [doc0713] nd printed on silk ( |approximate | date ) .            
## [doc0714] d Avignon and Lyon ( |approximate | date ) .            
## [doc0714] capital at Seville ( |approximate | date ) .            
## [doc0714]  king of Visigoths ( |approximate | date ) Al - Hajjaj i
## [doc0715]                      |Approximate | date – Tewkesbury Ab
## [doc0715] glo - Saxon abbess ( |approximate | date ) Muhammad ibn 
## [doc0716]  , duke of Bavaria ( |approximate | date ) Winnoc , Wels
## [doc0716] sh mayor of palace ( |approximate | date ) Fujiwara no K
## [doc0717] tablished in Japan ( |approximate | date ) .            
## [doc0718] es in Italian Alps ( |approximate | date ) .            
## [doc0718] bbey and is buried ( |approximate | date ) .            
## [doc0718] glo - Saxon abbess ( |approximate | date ) Plectrude , N
## [doc0719]  - Saxon anchoress ( |approximate | date ) Radbod , king
## [doc0719] h to Coptic Church ( |approximate | date ) .            
## [doc0719]  , duke of Bavaria ( |approximate | date )              
## [doc0719]  king of Austrasia ( |approximate | date ) Dae Jo - yeon
## [doc0719] s capital Salzburg ( |approximate | date ) .            
## [doc0720]  Abbey in Somerset ( |approximate | date ) .            
## [doc0720]  , Frankish abbess ( |approximate | date ) Tariq ibn Ziy
## [doc0720] s own separate way ( |approximate | date ) .            
## [doc0720]  Frankish nobleman ( |approximate | date ) Bertrada of L
## [doc0720] omes are destroyed ( |approximate | date ) .            
## [doc0721] rt , count of Laon ( |approximate | date ) .            
## [doc0721]  Premyslid dynasty ( |approximate | date ) .            
## [doc0721] uring Tang Dynasty ( |approximate | date ) .            
## [doc0721] ah , Muslim caliph ( |approximate | date ) Fujiwara no U
## [doc0721] i , Muslim general ( |approximate | date ) Ardo , king o
## [doc0722] , king of Asturias ( |approximate | date ) Isma 'il ibn 
## [doc0722] rnovii in Cornwall ( |approximate | date ) .            
## [doc0723] bishop of Freising ( |approximate | date ) Isonokami no 
## [doc0723] rn Germanic tribes ( |approximate | date ) .            
## [doc0724] leader of Göktürks ( |approximate | date )              
## [doc0724] ith red roof poles ( |approximate | date ) .            
## [doc0725]  from Muslim raids ( |approximate | date ) .            
## [doc0725]  leads to a revolt ( |approximate | date ) .            
## [doc0725] con , Lombard monk ( |approximate | date )              
## [doc0726]  , Vienne and Lyon ( |approximate | date ) .            
## [doc0726] riarch of Aquileia ( |approximate | date ) October – Itz
## [doc0726] d by Emperor Shomu ( |approximate | date ) .            
## [doc0728] e , king of Wessex ( |approximate | date ) Jarir ibn Ati
## [doc0730] us , Arab minister ( |approximate | date ) Autpert Ambro
## [doc0730]  , Frankish bishop ( |approximate | date ) Hugh of Champ
## [doc0731] rom Wessex control ( |approximate | date ) .            
## [doc0731] f Bulgarian Empire ( |approximate | date ) February – Gr
## [doc0732] centre of learning ( |approximate | date ) .            
## [doc0733] glo - Saxon abbess ( |approximate | date ) Muhammad al -
## [doc0734] o , Duke of Frisians |Approximate | date –              
## [doc0735]  duke of Aquitaine ( |approximate | date ) Guidoboni , E
## [doc0735]  , Byzantine abbot ( |approximate | date ) May –        
## [doc0735]  a serious illness ( |approximate | date ) .            
## [doc0735]  , Arab grammarian ( |approximate | date ) Adela , Frank
## [doc0735] - Saxon missionary ( |approximate | date ) Dantidurga , 
## [doc0737] arch of Alexandria ( |approximate | date ) .            
## [doc0737] ened and efficient ( |approximate | date ) .            
## [doc0737] glo - Saxon bishop ( |approximate | date ) Fujiwara no F
## [doc0738]  and chief adviser ( |approximate | date ) Chengguan , C
## [doc0740]  also surroundings ( |approximate | date ) Fujiwara no H
## [doc0740] u , Frankish abbot ( |approximate | date ) Theoctista , 
## [doc0740] , king of Asturias ( |approximate | date ) Gao Ying , ch
## [doc0741] stablished country ( |approximate | date ) .            
## [doc0741]  duke of Thuringia ( |approximate | date ) Kulthum ibn I
## [doc0741]  , duke of Bavaria ( |approximate | date ) February or -
## [doc0742] d , duke of Alsace ( |approximate | date ) Niu Xianke , 
## [doc0742]  emperor of Franks ( |approximate | date ) De Zong , emp
## [doc0742] to Lucca from Luni ( |approximate | date ) .            
## [doc0743] Powys in Mid Wales ( |approximate | date ) .            
## [doc0744] s to early century ( |approximate | date ) .            
## [doc0745] Chinese suzerainty ( |approximate | date ) .            
## [doc0745] Balkan Peninsula ) ( |approximate | date ) .            
## [doc0745] r tribes from east ( |approximate | date ) .            
## [doc0745] , bishop of Bremen ( |approximate | date ) Yaoshan Weiya
## [doc0746] l and Lombard army ( |approximate | date ) .            
## [doc0746] ace and prosperity ( |approximate | date ) .            
## [doc0746] e king of Bumthang ( |approximate | date ) .            
## [doc0747] uring Tang Dynasty ( |approximate | date ) .            
## [doc0747] ne , Frankish monk ( |approximate | date ) Charlemagne ,
## [doc0748]  Byzantine culture ( |approximate | date ) .            
## [doc0748] ian and biographer ( |approximate | date ) Charlemagne ,
## [doc0748] thelbald of Mercia ( |approximate | date ) .            
## [doc0748] t I , king of Kent ( |approximate | date )              
## [doc0749] ni , Muslim jurist ( |approximate | date ) August –     
## [doc0750] bishop of Salzburg ( |approximate | date ) Bermudo I , k
## [doc0750] n world ) is built ( |approximate | date ) .            
## [doc0750] ng , from Zhejiang ( |approximate | date ) .            
## [doc0750]  Byzantine empress ( |approximate | date ) Isonokami no 
## [doc0750] hana Empire begins ( |approximate | date ) .            
## [doc0750]  sixteenth century ( |approximate | date ) .            
## [doc0750]  bishop of Cologne ( |approximate | date ) Al - Abbas ib
## [doc0750] uring Tang Dynasty ( |approximate | date ) .            
## [doc0751]  duke of Benevento ( |approximate | date ) Mansur ibn Ju
## [doc0751] e , Frankish abbot ( |approximate | date )              
## [doc0751]  and river traffic ( |approximate | date ) .            
## [doc0752]  Byzantine empress ( |approximate | date ) Joannicius Gr
## [doc0753] d dress adornments ( |approximate | date ) .            
## [doc0753] ongs to Vokil clan ( |approximate | date ) .            
## [doc0753] al of Tang Dynasty ( |approximate | date ) August – Hild
## [doc0753] f Bulgarian Empire ( |approximate | date )              
## [doc0754] r 500,000 citizens ( |approximate | date ) .            
## [doc0754] bishop of Würzburg ( |approximate | date ) Childeric III
## [doc0754] aly ) is from year ( |approximate | date ) .            
## [doc0755] e , Frankish noble ( |approximate | date )              
## [doc0755] l upheaval and war ( |approximate | date ) .            
## [doc0755] e , Frankish noble ( |approximate | date ) William of Ge
## [doc0756] nto a burning oven ( |approximate | date ) .            
## [doc0756] a' , Muslim writer ( |approximate | date ) Isaac I of An
## [doc0756] d , king of Wessex ( |approximate | date ) Dantidurga , 
## [doc0756] , Christian martyr ( |approximate | date ) Abu Nuwas , M
## [doc0758]  of Constantinople ( |approximate | date )              
## [doc0758] y succeeds as king ( |approximate | date ) .            
## [doc0758] s a war with Welsh ( |approximate | date ) .            
## [doc0758] o , Lombard prince ( |approximate | date )              
## [doc0758] ing of East Anglia ( |approximate | date )              
## [doc0759] nese Buddhist monk ( |approximate | date ) July –       
## [doc0759] hmar , Swiss abbot ( |approximate | date ) Wang Wei , Ch
## [doc0760] is II in Benevento ( |approximate | date ) .            
## [doc0760]  Laos and Thailand ( |approximate | date ) .            
## [doc0760] diplomat and abbot ( |approximate | date ) Fujiwara no O
## [doc0760]  , Chinese painter ( |approximate | date )              
## [doc0760]  England and Wales ( |approximate | date ) .            
## [doc0760]  Byzantine general ( |approximate | date ) Wei Guanzhi ,
## [doc0760]  bishop of Orléans ( |approximate | date )              
## [doc0760] y ( modern India ) ( |approximate | date ) .            
## [doc0760]  duke of Benevento ( |approximate | date ) Muiredach mac
## [doc0761] nks Nolan and John ( |approximate | date ) .            
## [doc0761] ple to cannibalism ( |approximate | date ) .            
## [doc0764] ple from Black Sea ( |approximate | date ) .            
## [doc0765] o , bishop of Chur ( |approximate | date ) Wang Changlin
## [doc0765] f every other year ( |approximate | date ) .            
## [doc0766] e scholar and poet ( |approximate | date ) March –      
## [doc0766]  by lines of walls ( |approximate | date ) .            
## [doc0767] j , Muslim scholar ( |approximate | date )              
## [doc0767] al - Hafi , Muslim ( |approximate | date ) Ja' far ibn Y
## [doc0768] nk of River IJssel ( |approximate | date ) .            
## [doc0768] f late king Oswulf ( |approximate | date ) .            
## [doc0769] ishop of Lichfield ( |approximate | date ) Dub Calgaid m
## [doc0769] rchbishop of Mainz ( |approximate | date ) .            
## [doc0770] f Byzantine Empire ( |approximate | date ) Stephen IV , 
## [doc0770]  - day Netherlands ( |approximate | date ) .            
## [doc0770] s , Frankish abbot ( |approximate | date ) Jayavarman II
## [doc0770] derland is founded ( |approximate | date ) .            
## [doc0770] , Irish missionary ( |approximate | date ) Opportuna of 
## [doc0771] in Pashtun history ( |approximate | date ) Coirpre mac F
## [doc0772] is rival Egbert II ( |approximate | date ) .            
## [doc0773] toward Charlemagne ( |approximate | date ) .            
## [doc0774] of Kent and Wessex ( |approximate | date ) .            
## [doc0774] , Muslim historian ( |approximate | date ) Amoghavajra ,
## [doc0774] , Muslim historian ( |approximate | date ) Amoghavajra ,
## [doc0775]  Byzantine empress ( |approximate | date )              
## [doc0775] inese Tang dynasty ( |approximate | date ) .            
## [doc0775] rchbishop of Trier ( |approximate | date )              
## [doc0775] u , German scholar ( |approximate | date ) April Smbat V
## [doc0777]  , wife of Tassilo ( |approximate | date ) .            
## [doc0778] ishop of Lichfield ( |approximate | date ) Congalach mac
## [doc0778] akens his position ( |approximate | date ) .            
## [doc0779] ing of East Anglia ( |approximate | date ) Fujiwara no M
## [doc0779] archbishop of Lyon ( |approximate | date ) Ibrahim ibn a
## [doc0780] nesia ) , is begun ( |approximate | date ) .            
## [doc0780] ded by Charlemagne ( |approximate | date ) .            
## [doc0780] ang Prabang ( Laos ) |Approximate | date –              
## [doc0780] t and amphitheatre ( |approximate | date ) .            
## [doc0780] t , Frisian bishop ( |approximate | date ) Guifeng Zongm
## [doc0781] ct Nestorian Stele ( |approximate | date ) .            
## [doc0781] ted for first time ( |approximate | date ) .            
## [doc0781] ducational matters ( |approximate | date ) .            
## [doc0781] , bishop of Hexham ( |approximate | date ) King Fergus m
## [doc0782]  Frankish nobleman ( |approximate | date ) output { font
## [doc0783] hop of Lindisfarne ( |approximate | date ) Fujiwara no U
## [doc0784] or of Tang Dynasty ( |approximate | date ) Theodrada , F
## [doc0785]  Dalmatian Croatia ( |approximate | date ) .            
## [doc0785] ures his blindness ( |approximate | date ) .            
## [doc0785]  , king of Denmark ( |approximate | date )              
## [doc0785] , emperor of Japan ( |approximate | date ) Paschasius Ra
## [doc0786] , king of Lombards ( |approximate | date ) Diarmait mac 
## [doc0786]  Muslim astrologer ( |approximate | date ) Tachibana no 
## [doc0787] ishop of Eichstätt ( |approximate | date )              
## [doc0787] and astrologer [ ] ( |approximate | date ) Li Deyu , cha
## [doc0788]  duchess and saint ( |approximate | date ) Li Zaiyi , ge
## [doc0788] , duke of Alemanni ( |approximate | date ) Mauregatus , 
## [doc0790] , king of Asturias ( |approximate | date ) Fujiwara no O
## [doc0790] ce of his overlord ( |approximate | date ) .            
## [doc0790]  adviser and saint ( |approximate | date ) Cyngen ap Cad
## [doc0790]  begin settlements ( |approximate | date ) .            
## [doc0792] t to unify England ( |approximate | date ) .            
## [doc0793]  to transmit funds ( |approximate | date ) .            
## [doc0793] zantine co-emperor ( |approximate | date ) Wei Mo , chan
## [doc0794] ssionary and saint ( |approximate | date )              
## [doc0795] istory of Lombards ( |approximate | date ) .            
## [doc0795] unning East Anglia ( |approximate | date ) .            
## [doc0795] f , king of Wessex ( |approximate | date ) Babak Khorram
## [doc0795] r count ) of Capua ( |approximate | date )              
## [doc0795] in and Inishmurray ( |approximate | date ) .            
## [doc0796]  , duke of Bavaria ( |approximate | date )              
## [doc0797] ed during fighting ( |approximate | date ) .            
## [doc0797] , king of Asturias ( |approximate | date ) Caradog ap Me
## [doc0798]  , Muslim governor ( |approximate | date ) Babak Khorram
## [doc0798] rsica and Sardinia ( |approximate | date ) .            
## [doc0798]  sub -king of Kent ( |approximate | date ) .            
## [doc0799] , emperor of Tibet ( |approximate | date )              
## [doc0799]  , Chinese general ( |approximate | date ) April –      
## [doc0800] elarus and Ukraine ( |approximate | date ) .            
## [doc0800] uring Tang Dynasty ( |approximate | date ) .            
## [doc0800] stery , in Ireland ( |approximate | date ) .            
## [doc0800]  Indian astronomer ( |approximate | date ) Louis , Frank
## [doc0800] , duke of Brittany ( |approximate | date ) Pribina , Sla
## [doc0800] revered as a saint ( |approximate | date ) .            
## [doc0800] o - Saxon princess ( |approximate | date ) Beatus of Lié
## [doc0800]  bishop of Le Mans ( |approximate | date ) Al - Abbas ib
## [doc0800]  and western Sudan ( |approximate | date ) .            
## [doc0800] rtant urban center ( |approximate | date ) .            
## [doc0800] nsferred to London ( |approximate | date ) .            
## [doc0800] ian Islands arrive ( |approximate | date ) .            
## [doc0801] opher and polymath ( |approximate | date ) Waldrada of W
## [doc0802] duke of Carantania ( |approximate | date ) Eadburh , Ang
## [doc0802]  coast of Scotland ( |approximate | date ) .            
## [doc0804] o , doge of Venice ( |approximate | date ) Ibrahim al - 
## [doc0805]  of Avar Khaganate ( |approximate | date ) .            
## [doc0805] ornish in Cornwall ( |approximate | date ) .            
## [doc0805] , king of Pamplona ( |approximate | date ) Louis German 
## [doc0805]                    ( |Approximate | date ) ( d. ) Liudol
## [doc0806] ( knyaz ) of Sorbs ( |approximate | date ) Muhammad ibn 
## [doc0806] I , Frankish count ( |approximate | date ) Ralpacan , ki
## [doc0807] d , duke of Saxony ( |approximate | date ) output { font
## [doc0807] dg , king of Picts ( |approximate | date ) Cuthred , kin
## [doc0808]  , Frankish writer ( |approximate | date ) Ælfwald II , 
## [doc0808] ish archbishop and ( |approximate | date ) Layman Pang ,
## [doc0808]  , German monk and ( |approximate | date ) Kang Chengxun
## [doc0808] ository ) in Italy ( |approximate | date ) .            
## [doc0809] odd , Welsh bishop ( |approximate | date )              
## [doc0810]  of Lower Pannonia ( |approximate | date ) Wu Shaocheng 
## [doc0810] ed by Celtic monks ( |approximate | date ) .            
## [doc0810]  Frankish nobleman ( |approximate | date ) Halfdan Black
## [doc0810] , antipope of Rome ( |approximate | date ) Bertharius , 
## [doc0812] n of Constantine V ( |approximate | date ) Tian Ji'an , 
## [doc0812] f Balhae ( Korea ) ( |approximate | date ) Li Ning , pri
## [doc0813] ts insubordination ( |approximate | date ) .            
## [doc0813] , bishop of Hexham ( |approximate | date ) Muhammad ibn 
## [doc0813] , Benedictine monk ( |approximate | date ) ’ Abd Allah i
## [doc0813] ha , Syriac bishop ( |approximate | date ) Muhammad at -
## [doc0814]  , Frankish deacon ( |approximate | date ) Enchin , Japa
## [doc0814] in , king of Dyfed ( |approximate | date )              
## [doc0814] gen , Welsh prince ( |approximate | date ) Li Jifu , cha
## [doc0815] Persian astrologer ( |approximate | date ) Sadnalegs , e
## [doc0815] r in Landnámabók ) ( |approximate | date ) .            
## [doc0815]  Musli m alchemist ( |approximate | date )              
## [doc0815]  Byzantine empress ( |approximate | date ) February – Ib
## [doc0815] i , Muslim scholar ( |approximate | date ) Eberhard , du
## [doc0816] of Catholic Church ( |approximate | date ) Henjo , Japan
## [doc0816] hate in Azerbaijan ( |approximate | date ) .            
## [doc0816] ed during fighting ( |approximate | date ) .            
## [doc0817] ount of Vermandois ( |approximate | date ) Pyinbya , kin
## [doc0818]  , Persian scholar ( |approximate | date ) April – Berna
## [doc0818] ount of Vermandois ( |approximate | date )              
## [doc0818] aid Dyfed in Wales ( |approximate | date ) .            
## [doc0819] Vannes in Brittany ( |approximate | date ) .            
## [doc0820]  , king of Armenia ( |approximate | date ) Buhturi , Syr
## [doc0820] rankish noblewoman ( |approximate | date ) Álmos , milit
## [doc0820]  , duke of Gascony ( |approximate | date ) Muhammad ibn 
## [doc0820] Persian geographer ( |approximate | date ) Qusta ibn Luq
## [doc0820]  Frankish margrave ( |approximate | date )              
## [doc0821] , king of Asturias ( |approximate | date ) April – Georg
## [doc0821]  Frankish nobleman ( |approximate | date ) Li Su , gener
## [doc0822]  under his control ( |approximate | date ) .            
## [doc0823] I , king of Mercia ( |approximate | date ) Gondulphus , 
## [doc0823]  Byzantine empress ( |approximate | date ) Thomas Slav ,
## [doc0824]  plunder bishopric ( |approximate | date ) .            
## [doc0825] rn - day Camelford ( |approximate | date ) .            
## [doc0825] s to Frankish rule ( |approximate | date ) .            
## [doc0825] rankish noblewoman ( |approximate | date ) Liu Wu , gene
## [doc0825] hi , Japanese poet ( |approximate | date ) Tsunesada , J
## [doc0825] and count of Capua ( |approximate | date ) Louis II , ki
## [doc0826] y , Frankish queen ( |approximate | date ) Cyril , Byzan
## [doc0828] mmander al - Kamuk ( |approximate | date ) .            
## [doc0828] reaks out in Egypt ( |approximate | date ) .            
## [doc0828] by Saracen pirates ( |approximate | date ) .            
## [doc0829] mperor Charlemagne ( |approximate | date ) .            
## [doc0829] - Hadi , Shia Imam ( |approximate | date ) Al - Nasa 'i 
## [doc0830] les of King Arthur ( |approximate | date ) .            
## [doc0830] , Muslim physician ( |approximate | date ) Junayd of Bag
## [doc0830] ing of Northumbria ( |approximate | date ) Egfrid , bish
## [doc0830]  Frankish nobleman ( |approximate | date ) Athanasius I 
## [doc0830] , Frankish empress ( |approximate | date ) Irmgard , Fra
## [doc0830]  Erlafried of Calw ( |approximate | date ) .            
## [doc0830]  Mälaren in Sweden ( |approximate | date ) .            
## [doc0831] fyw , Welsh bishop ( |approximate | date ) Yuan Zhen , p
## [doc0832] b Jewish physician ( |approximate | date ) March – Wulfr
## [doc0833] f Bulgarian Empire ( |approximate | date ) García Galínd
## [doc0833] ds House of Mojmir ( |approximate | date ) .            
## [doc0833] el , Slavic prince ( |approximate | date )              
## [doc0834] nglo - Saxon abbot ( |approximate | date ) Gaucelm , Fra
## [doc0834] xiu , Chinese poet ( |approximate | date ) Robert , Fran
## [doc0834]  during Viking Age ( |approximate | date ) .            
## [doc0834] ' ) in Switzerland ( |approximate | date ) .            
## [doc0835] g Egbert of Wessex ( |approximate | date ) .            
## [doc0835] France and England ( |approximate | date ) .            
## [doc0835]  , duke of Croatia ( |approximate | date ) Wang Shouchen
## [doc0835]  , Chinese warlord ( |approximate | date ) Berengar Wise
## [doc0835] o , Lombard prince ( |approximate | date ) Lothair II , 
## [doc0836] j , Serbian prince ( |approximate | date ) Ralpacan , em
## [doc0836] t , king of Wessex ( |approximate | date ) Al - Musta'in
## [doc0836] ang , Chinese poet ( |approximate | date ) March – Haito
## [doc0837]  an annual payment ( |approximate | date ) .            
## [doc0837] rgrave of Flanders ( |approximate | date ) Ibn Duraid , 
## [doc0838]  , Muslim governor ( |approximate | date ) November –   
## [doc0838] an , king of Tibet ( |approximate | date ) Ratimir , duk
## [doc0838]                  [ ] |Approximate | date –              
## [doc0838] nverted to Judaism ( |approximate | date ) .            
## [doc0838] argrave of Tuscany ( |approximate | date ) Bran mac Fáel
## [doc0838] t , Frisian bishop ( |approximate | date ) Pepin I of Aq
## [doc0838] nglo - Saxon queen ( |approximate | date ) Fujiwara no T
## [doc0838] p against Abbasids ( |approximate | date ) .            
## [doc0839] ine insurgents . [ ] |Approximate | date – Danish Viking
## [doc0840]  Byzantine empress ( |approximate | date ) Hucbald , Fra
## [doc0840] , Frankish empress ( |approximate | date ) Sunyer II , F
## [doc0840] , Benedictine monk ( |approximate | date )              
## [doc0840] n Northern Ireland ( |approximate | date ) .            
## [doc0840] av , king of Sorbs ( |approximate | date )              
## [doc0840] n , king of Mercia ( |approximate | date )              
## [doc0840] Nuri , Muslim Sufi ( |approximate | date ) Adalhard II ,
## [doc0840] h Kingdom of Dyfed ( |approximate | date ) .            
## [doc0841] r city of Brindisi ( |approximate | date ) .            
## [doc0841] , Frankish scholar ( |approximate | date )              
## [doc0841]  Frankish nobleman ( |approximate | date ) Du Rangneng ,
## [doc0842] o , doge of Venice ( |approximate | date ) Yang Fuguang 
## [doc0842] ad , king of Picts ( |approximate | date ) We Gyaltore T
## [doc0842] dhir , Muslim emir ( |approximate | date ) Al - Muwaffaq
## [doc0843] untess of Flanders ( |approximate | date ) April – Judit
## [doc0844] rush , Muslim emir ( |approximate | date )              
## [doc0844] nji , Chinese poet ( |approximate | date ) January –    
## [doc0844] ing of Northumbria ( |approximate | date )              
## [doc0844] Japanese waka poet ( |approximate | date )              
## [doc0845]  , duke of Croatia ( |approximate | date )              
## [doc0845] ince of Hungarians ( |approximate | date ) Berengar I , 
## [doc0845] on of Charles Bald ( |approximate | date ) .            
## [doc0845] , Viking chieftain ( |approximate | date ) output { font
## [doc0845]  Muslim astrologer ( |approximate | date )              
## [doc0846] nst invading Scots ( |approximate | date ) .            
## [doc0846]  , king of Moravia ( |approximate | date ) Niall Caille 
## [doc0846] g leader and count ( |approximate | date ) Wang Chao , C
## [doc0846]  Yi , Chinese poet ( |approximate | date )              
## [doc0847]  , Frankish bishop ( |approximate | date ) Hetto , Frank
## [doc0847]  , Chinese general ( |approximate | date ) Fujiwara no S
## [doc0847] I , king of Wessex ( |approximate | date ) Al - Mu'tazz 
## [doc0847] ersuading to leave ( |approximate | date ) .            
## [doc0848] , king of Asturias ( |approximate | date ) Carloman , Fr
## [doc0848] echtain in Ireland ( |approximate | date ) .            
## [doc0848] killed in fighting ( |approximate | date ) .            
## [doc0848] ndia start to rule ( |approximate | date ) .            
## [doc0848] el , king of Gwent ( |approximate | date )              
## [doc0850] ylog ( or Eliseg ) ( |approximate | date ) .            
## [doc0850]  Frankish margrave ( |approximate | date ) Arnulf of Car
## [doc0850] ri , Japanese poet ( |approximate | date ) Onneca Fortún
## [doc0850] r , king of Norway ( |approximate | date ) Hatto I , Fra
## [doc0850]  Sayil , and Labna ( |approximate | date ) .            
## [doc0850] count of Friesland ( |approximate | date )              
## [doc0850] ertain wild bushes ( |approximate | date ) .            
## [doc0850]  , Frankish bishop ( |approximate | date ) Vlastimir , S
## [doc0850] rankish archbishop ( |approximate | date ) Bishr al - Ha
## [doc0851]  prince of Salerno ( |approximate | date ) Vlastimir , p
## [doc0851] I , duke of Saxony ( |approximate | date ) March – Nomin
## [doc0851] ice wine , and tea ( |approximate | date ) .            
## [doc0852] tan , king of Kent ( |approximate | date ) Aleran , Fran
## [doc0852]  Surrey and Sussex ( |approximate | date ) .            
## [doc0852] o , Frankish count ( |approximate | date ) Harald Klak ,
## [doc0852]  , duke of Bohemia ( |approximate | date ) Nicholas I My
## [doc0853] e warlord and king ( |approximate | date ) March – Haymo
## [doc0853] t , count of Maine ( |approximate | date ) Ishaq ibn Ism
## [doc0854]  bishop of Utrecht ( |approximate | date ) Osburh , quee
## [doc0855] ount of Vermandois ( |approximate | date ) Sahnun ibn Sa
## [doc0855]  Frankish nobleman ( |approximate | date ) Guaimar I of 
## [doc0856]           November ( |approximate | date ) –            
## [doc0856] , Viking chieftain ( |approximate | date ) Guerin , Fran
## [doc0856] northwest of Spain ( |approximate | date ) .            
## [doc0856] Asad , Muslim emir ( |approximate | date ) Muhammad I Ab
## [doc0857] ruler over Denmark ( |approximate | date ) .            
## [doc0857]  Germer - de - Fly ( |approximate | date ) .            
## [doc0857] Claviceps purpurea ( |approximate | date ) .            
## [doc0858] , duke of Burgundy ( |approximate | date ) Rudaki , Pers
## [doc0859]  , bishop of Noyon ( |approximate | date ) Lu Shang , ch
## [doc0860] , king of Pamplona ( |approximate | date ) Sergius III ,
## [doc0860] o basic characters ( |approximate | date ) .            
## [doc0860] nisia ) , are made ( |approximate | date ) .            
## [doc0860] o , queen of Italy ( |approximate | date ) Donald II , k
## [doc0860]  Indian astronomer ( |approximate | date ) Guy I , duke 
## [doc0861] Galician clergyman ( |approximate | date ) Gregory of Kh
## [doc0861] bishop of Camerino ( |approximate | date ) Bai Minzhong 
## [doc0861] ng , king of Silla ( |approximate | date )              
## [doc0861] na , Slavic prince ( |approximate | date ) Samuel of Kak
## [doc0862] s , Frankish abbot ( |approximate | date ) Máel Sechnail
## [doc0862] ns to Christianity ( |approximate | date ) .            
## [doc0863] bishop of Hereford ( |approximate | date ) Muirecán mac 
## [doc0863] of Rus ' Khaganate ( |approximate | date ) .            
## [doc0864] , count of Gascony ( |approximate | date ) Sergius I , d
## [doc0865]  Frankish margrave ( |approximate | date ) Jinseong , qu
## [doc0865]  king of Aquitaine ( |approximate | date ) Ragnar Lodbro
## [doc0866] ons for witchcraft ( |approximate | date ) .            
## [doc0866] t Frankish Kingdom ( |approximate | date ) Robert I , ki
## [doc0867]  Premyslid Dynasty ( |approximate | date ) .            
## [doc0867]  knyaz ) of Serbia ( |approximate | date ) Stephen I , p
## [doc0867] le , Viking leader ( |approximate | date )              
## [doc0868] ïon , Breton abbot ( |approximate | date ) Minamoto no M
## [doc0869] hi , Muslim jurist ( |approximate | date ) Al - Jahiz , 
## [doc0869] ing of Hu Goguryeo ( |approximate | date ) Muhammad al -
## [doc0869] n , Frankish count ( |approximate | date )              
## [doc0870] count of Barcelona ( |approximate | date ) Theodora , Ro
## [doc0870]  Castle is founded ( |approximate | date ) .            
## [doc0870] ish monk and saint ( |approximate | date ) Rastislav , r
## [doc0870]  duke of Aquitaine ( |approximate | date )              
## [doc0870]  Frankish nobleman ( |approximate | date ) Lde-dpal - hk
## [doc0870] an Bagratid prince ( |approximate | date ) Al - Harith i
## [doc0871] ments , is written ( |approximate | date ) .            
## [doc0871] a I , king of León ( |approximate | date ) Li Qi , chanc
## [doc0871] les under his rule ( |approximate | date ) .            
## [doc0872] Muslim philosopher ( |approximate | date )              
## [doc0872] o , doge of Venice ( |approximate | date ) April – Mufli
## [doc0872] ess , Viking chief ( |approximate | date ) Sargis , patr
## [doc0873] ss , Viking leader ( |approximate | date ) John III , Sy
## [doc0874] r , king of Wessex ( |approximate | date ) Constantine I
## [doc0874] ng , Viking leader ( |approximate | date ) Bayazid Basta
## [doc0874] rival Constantin I ( |approximate | date ) .            
## [doc0874]  of Iceland begins ( |approximate | date ) .            
## [doc0875] , Jewish liturgist ( |approximate | date ) Donyarth , ki
## [doc0875] dds to his kingdom ( |approximate | date ) .            
## [doc0875] we , king of Burma ( |approximate | date ) Spytihnev I ,
## [doc0875]  Asturias and León ( |approximate | date ) Fujiwara no N
## [doc0875]  Frankish margrave ( |approximate | date ) Ermentrude , 
## [doc0875]  Melaine at Rennes ( |approximate | date ) .            
## [doc0875]  Frankish nobleman ( |approximate | date ) Lady Ise , Ja
## [doc0876] , Bulgarian hermit ( |approximate | date ) Lu Wenji , Ch
## [doc0876] , Frisian governor ( |approximate | date ) Pascweten , d
## [doc0877] to flee to Ireland ( |approximate | date ) .            
## [doc0877] , Irish archdeacon ( |approximate | date ) Bernard II , 
## [doc0878]  Frankish nobleman ( |approximate | date )              
## [doc0878] , antipope of Rome ( |approximate | date ) Gauzfrid , Fr
## [doc0878] y , Frankish abbot ( |approximate | date ) Abu Zur'a al 
## [doc0879] I , king of Mercia ( |approximate | date ) Cormac mac Ci
## [doc0880] f city of Dortmund ( |approximate | date ) .            
## [doc0880]  nobleman ( earl ) ( |approximate | date ) Fujiwara no T
## [doc0880] s , Frankish queen ( |approximate | date )              
## [doc0880] heubarth ( Wales ) ( |approximate | date ) Lambert II , 
## [doc0880]  , duke of Spoleto ( |approximate | date ) Lothar I , Fr
## [doc0880] on of Alfred Great ( |approximate | date ) Abu Bakr ibn 
## [doc0881] t Frankish Kingdom ( |approximate | date ) Hugh of Arles
## [doc0881] I , Frankish abbot ( |approximate | date ) Liu Ye , chan
## [doc0881] owys and Seisyllwg ( |approximate | date ) .            
## [doc0882] son , Swedish king ( |approximate | date ) Eudokia Inger
## [doc0882] wayh , Muslim emir ( |approximate | date )              
## [doc0883] t Frankish Kingdom ( |approximate | date ) .            
## [doc0883] a , Frankish abbot ( |approximate | date )              
## [doc0884] inese rebel leader ( |approximate | date ) Wang Duo , ch
## [doc0886]  Frankish margrave ( |approximate | date ) Airemón mac Á
## [doc0886]  , Chinese warlord ( |approximate | date ) Lu Yanhong , 
## [doc0886] bishop of Hereford ( |approximate | date ) Fiachnae mac 
## [doc0886] to , Japanese poet ( |approximate | date ) Yang Wo , emp
## [doc0887]  , Chinese warlord ( |approximate | date )              
## [doc0888] fu as first abbess ( |approximate | date ) .            
## [doc0888] nt ruler of Mercia ( |approximate | date ) .            
## [doc0888]  , duke of Bohemia ( |approximate | date ) Zhu Yougui , 
## [doc0889] ing with Worcester ( |approximate | date ) .            
## [doc0889]  , duke of Bohemia ( |approximate | date ) Ibn Marwan , 
## [doc0889] peasant rebellions ( |approximate | date ) .            
## [doc0890] art of his kingdom ( |approximate | date ) .            
## [doc0890] founded in England ( |approximate | date ) .            
## [doc0890] d regent of Russia ( |approximate | date ) Reginar II , 
## [doc0890]  count of Flanders ( |approximate | date ) Gilbert , duk
## [doc0890] m , king of Wessex ( |approximate | date ) Abu Hatim al 
## [doc0892] knyaz ) of Croatia ( |approximate | date ) Nasr I , Musl
## [doc0893] ial and chancellor ( |approximate | date ) Louis Child ,
## [doc0893]  of Constantinople ( |approximate | date ) Theodard , ar
## [doc0893]  Persian historian ( |approximate | date )              
## [doc0893] rankish noblewoman ( |approximate | date ) Flodoard , Fr
## [doc0894] , queen of Germany ( |approximate | date ) Minamoto no T
## [doc0894] o cease with China ( |approximate | date ) .            
## [doc0894] bishop of Hereford ( |approximate | date ) Dae Hyeonseok
## [doc0894]  , king of England ( |approximate | date ) Emma , queen 
## [doc0895]  , German nobleman ( |approximate | date ) Sancho Ordóñe
## [doc0895]  , Chinese warlord ( |approximate | date ) Lu Xisheng , 
## [doc0895]  , Chinese warlord ( |approximate | date ) Wei Zhaodu , 
## [doc0895] n polyphonic music ( |approximate | date ) .            
## [doc0895] e , Frankish abbot ( |approximate | date ) Liu Chong , f
## [doc0895] dern - day Morelos ( |approximate | date ) .            
## [doc0896] peace and alliance ( |approximate | date ) .            
## [doc0896] cheiniog and Gwent ( |approximate | date ) .            
## [doc0896] r , Serbian prince ( |approximate | date )              
## [doc0896]  , Persian scholar ( |approximate | date )              
## [doc0896] ian and geographer ( |approximate | date ) Liu Hua , Chi
## [doc0897] Tulunid government ( |approximate | date ) .            
## [doc0898]  of Capetian Kings ( |approximate | date ) ( d. ) Li Con
## [doc0898] n , duke of Amalfi ( |approximate | date )              
## [doc0898]  bishop of Utrecht ( |approximate | date ) Ahmad ibn Isa
## [doc0899]  Frankish nobleman ( |approximate | date ) Yelü Bei , pr
## [doc0900] d , Frankish abbot ( |approximate | date ) Rasso , Frank
## [doc0900]  islands off coast ( |approximate | date ) .            
## [doc0900] ishop of Constance ( |approximate | date ) Fujiwara no S
## [doc0900] hi , Japanese poet ( |approximate | date ) Tadg mac Conc
## [doc0900]  II , king of León ( |approximate | date )              
## [doc0900] archbishop of York ( |approximate | date )              
## [doc0900] developed by Moche ( |approximate | date ) .            
## [doc0900] hop of Lindisfarne ( |approximate | date ) Fujiwara no T
## [doc0900] itan , Irish abbot ( |approximate | date ) Liu Chongwang
## [doc0900] hbishop of Cologne ( |approximate | date )              
## [doc0900]  Frankish nobleman ( |approximate | date ) John of Gorze
## [doc0900] chbishop of Bremen ( |approximate | date ) Berengar II ,
## [doc0901] all of Teotihuacan ( |approximate | date ) .            
## [doc0902] d , king of Wessex ( |approximate | date ) Du , empress 
## [doc0904] g warrior and poet ( |approximate | date ) Yongming Yans
## [doc0904] shop of Dorchester ( |approximate | date ) Zhang Jun , c
## [doc0904] ri , Japanese poet ( |approximate | date ) Kurszán , rul
## [doc0905]  Frankish nobleman ( |approximate | date ) Godfrey , Fra
## [doc0906] d in Great Moravia ( |approximate | date ) .            
## [doc0906]  Frankish nobleman ( |approximate | date ) Dae Wihae , k
## [doc0906]  landscape painter ( |approximate | date ) Liu Congxiao 
## [doc0907] a , Frankish queen ( |approximate | date ) Robert of Ver
## [doc0908]  , Chinese general ( |approximate | date ) Ibrahim ibn S
## [doc0909] ishop of Sherborne ( |approximate | date ) Cadell ap Rho
## [doc0910] egian Viking queen ( |approximate | date ) Hedwig of Sax
## [doc0910] ishop of Magdeburg ( |approximate | date ) Eadgyth , Ang
## [doc0910]  Byzantine empress ( |approximate | date ) Herbert III ,
## [doc0910] n , bishop of Séez ( |approximate | date ) Andronikos Do
## [doc0911] outh Italian coast ( |approximate | date ) .            
## [doc0912]  , Breton nobleman ( |approximate | date ) Smbat I , kin
## [doc0912] o , doge of Venice ( |approximate | date ) Qusta ibn Luq
## [doc0912]  of Upper Lorraine ( |approximate | date )              
## [doc0913] h queen and regent ( |approximate | date ) Shabbethai Do
## [doc0913] s of King García I ( |approximate | date ) .            
## [doc0915] a , Sicilian abbot ( |approximate | date )              
## [doc0915]  , German composer ( |approximate | date )              
## [doc0915]  Frankish nobleman ( |approximate | date ) Al - Mutanabb
## [doc0916]  , German nobleman ( |approximate | date ) Yuan Zong , e
## [doc0918]  , Chinese warlord ( |approximate | date ) Wang Jian , e
## [doc0919] co 's Chaco Canyon ( |approximate | date ) .            
## [doc0920] e begins in Africa ( |approximate | date ) .            
## [doc0920] eventer to Utrecht ( |approximate | date ) .            
## [doc0920]  King Edward Elder ( |approximate | date ) .            
## [doc0920] e , Byzantine monk ( |approximate | date ) Dunash ben La
## [doc0920]  count of Guelders ( |approximate | date ) Menahem ben S
## [doc0920] I , king of Norway ( |approximate | date ) Hugh of Verma
## [doc0922] under of Luxemburg ( |approximate | date ) Wang Pu , Chi
## [doc0922] ntess of Luxemburg ( |approximate | date ) Ibn Abi Zayd 
## [doc0923] q , Muslim scholar ( |approximate | date ) Eadred ( or E
## [doc0924]  to Constantinople ( |approximate | date ) .            
## [doc0924] , prince of Serbia ( |approximate | date )              
## [doc0925] nd murders Alberic ( |approximate | date ) .            
## [doc0925] habetic principles ( |approximate | date ) .            
## [doc0925] , king of Burgundy ( |approximate | date ) Conrad ( Red 
## [doc0925] h Bulgarian Empire ( |approximate | date ) .            
## [doc0925]  , German nobleman ( |approximate | date ) Widukind of C
## [doc0926] th Picts and Scots ( |approximate | date ) .            
## [doc0926]  , Chinese general ( |approximate | date ) Liu Jun , emp
## [doc0926] Bulgarian nobleman ( |approximate | date ) Ero Fernández
## [doc0927]  Kurdish chieftain ( |approximate | date ) Miró II , cou
## [doc0927] n hermit and abbot ( |approximate | date ) Fujiwara no A
## [doc0929]  , Chinese painter ( |approximate | date ) Kishi Joo , J
## [doc0929]  , king of Armenia ( |approximate | date )              
## [doc0930] f , duke of Swabia ( |approximate | date ) ( d. ) Mieszk
## [doc0930]  , duke of Gascony ( |approximate | date ) Sharwin II , 
## [doc0930]  , German nobleman ( |approximate | date ) ( d. ) Ya'qub
## [doc0931] egian he will hold ( |approximate | date ) .            
## [doc0931] eón , is published ( |approximate | date ) .            
## [doc0931]  County of Castile ( |approximate | date ) .            
## [doc0931]  ruler of Normandy ( |approximate | date ) .            
## [doc0931] g leader and count ( |approximate | date ) Stephen VII ,
## [doc0931]  Prince of Hungary ( |approximate | date ) Yang Guangmei
## [doc0931] I , king of Norway ( |approximate | date ) Hrotheweard (
## [doc0932] b Jewish physician ( |approximate | date ) Orso II Parti
## [doc0932] t ) , king of León ( |approximate | date ) May –        
## [doc0932] , duke of Normandy ( |approximate | date )              
## [doc0933]  count of Boulogne ( |approximate | date ) Alfonso IV , 
## [doc0934]  , Chinese painter ( |approximate | date ) Wolfgang , bi
## [doc0934] Chinese chancellor ( |approximate | date ) Zhu Hongzhao 
## [doc0934] h hermit and saint ( |approximate | date ) Gofraid ua Ím
## [doc0935] and regent of León ( |approximate | date ) Folcuin , Fra
## [doc0935]  canoness and poet ( |approximate | date )              
## [doc0935] of Catholic Church ( |approximate | date )              
## [doc0935]  , king of Croatia ( |approximate | date ) Werner V , Fr
## [doc0935] English noblewoman ( |approximate | date ) January – Ma 
## [doc0935]  king of Glywysing ( |approximate | date )              
## [doc0936] onsort of Normandy ( |approximate | date ) Zhou ( Elder 
## [doc0937] eld by King Otto I ( |approximate | date ) .            
## [doc0937] bishop of Hereford ( |approximate | date ) Xu Jingqian ,
## [doc0937] ishop of Lichfield ( |approximate | date ) Abbo , advise
## [doc0937] s , losing plunder ( |approximate | date ) .            
## [doc0937] r of Southern Tang ( |approximate | date )              
## [doc0938] hant and chieftain ( |approximate | date ) Romanos II , 
## [doc0938] an and poet ( b. ) ( |approximate | date ) Lady Peng , n
## [doc0938] and de facto ruler ( |approximate | date ) Beatrice of F
## [doc0939]  al - Mahdi occurs ( |approximate | date ) .            
## [doc0939] ant of Charlemange ( |approximate | date ) January – Yan
## [doc0939] Japanese waka poet ( |approximate | date )              
## [doc0940] egent of Hisham II ( |approximate | date ) Thorgeir Ljos
## [doc0940] ince of Hungarians ( |approximate | date ) Guy ( or Guid
## [doc0940]  , duke of Bavaria ( |approximate | date ) Leopold I , m
## [doc0940]  rule around Giecz ( |approximate | date ) .            
## [doc0940] cian and physicist ( |approximate | date ) Adelaide - Bl
## [doc0940]  modern - day Iraq ( |approximate | date ) .            
## [doc0941] gh King of Ireland ( |approximate | date ) ( d. ) Ibn Fu
## [doc0942] and Prince of Kiev ( |approximate | date )              
## [doc0942] l in Anahilapataka ( |approximate | date ) .            
## [doc0942] n , emir of Ghazna ( |approximate | date )              
## [doc0942]  Frankish nobleman ( |approximate | date ) Idwal Foel , 
## [doc0942] ster - le - Street ( |approximate | date ) Wynsige , bis
## [doc0943] onsort of Burgundy ( |approximate | date ) February Davi
## [doc0943] inese rebel leader ( |approximate | date )              
## [doc0943]  , king of England ( |approximate | date ) Emma of Paris
## [doc0944] ng , ruler of Dali ( |approximate | date ) Fang Gao , Ch
## [doc0944] , Muslim physician ( |approximate | date ) John VIII bar
## [doc0945] nch monk and abbot ( |approximate | date )              
## [doc0945] e of laws in Wales ( |approximate | date ) .            
## [doc0945]  Muslim geographer ( |approximate | date ) Al - Sijzi , 
## [doc0946] , Bulgarian hermit ( |approximate | date ) Marinus II , 
## [doc0946] igeas , Irish poet ( |approximate | date ) Daniel Ben Mo
## [doc0946] ount of Stade ( d. ) |Approximate | date Sylvester II , 
## [doc0947] zin , Toltec ruler ( |approximate | date ) Hugh of Arles
## [doc0947] ishop of Lichfield ( |approximate | date )              
## [doc0948] fid , Twelver Shia ( |approximate | date ) Baba Kuhi of 
## [doc0949] ada poet ( India ) ( |approximate | date ) Symeon ( New 
## [doc0949] aldorman of Wessex ( |approximate | date ) Jeongjong , k
## [doc0949]  Frankish nobleman ( |approximate | date ) August –     
## [doc0949] aldorman of Wessex ( |approximate | date ) Jeongjong , k
## [doc0950]  duke of Carinthia ( |approximate | date ) Reginar IV , 
## [doc0950]  , German nobleman ( |approximate | date ) Egbert , arch
## [doc0950]  , French nobleman ( |approximate | date ) Lothair Udo I
## [doc0950]  , Chinese general ( |approximate | date ) Ricfried , Fr
## [doc0950]  Prince of Hungary ( |approximate | date ) Dharma Mahade
## [doc0950] sland of Tongatapu ( |approximate | date ) .            
## [doc0950]  , German nobleman ( |approximate | date )              
## [doc0950] a Vaticana in Rome ( |approximate | date ) .            
## [doc0950]  , French nobleman ( |approximate | date ) Wolbodo , bis
## [doc0950] bishop of Ramsbury ( |approximate | date ) Al - Farabi ,
## [doc0951] g , emperor of Min ( |approximate | date )              
## [doc0951]  viscount of Béarn ( |approximate | date )              
## [doc0951]  Camaldolese order ( |approximate | date )              
## [doc0953] r , Sallarid ruler ( |approximate | date ) Rasso , Frank
## [doc0953] r , Sallarid ruler ( |approximate | date )              
## [doc0954]  Alba ( Scotland ) ( |approximate | date ) Onakatomi no 
## [doc0955] t of Cea ( Spain ) ( |approximate | date ) Gamle Eirikss
## [doc0955] h abbot and writer ( |approximate | date ) Arduin of Ivr
## [doc0955] ringia ( Germany ) ( |approximate | date ) Gisela of Bur
## [doc0955] ortuguese nobleman ( |approximate | date )              
## [doc0956]  , Bohemian bishop ( |approximate | date ) Sampiro , Spa
## [doc0957] e scholar-official ( |approximate | date ) Wang Dan , Ch
## [doc0957] ch , from paganism ( |approximate | date ) .            
## [doc0958]  count of Burgundy ( |approximate | date ) Rinchen Zangp
## [doc0959] ibetan lama - king ( |approximate | date )              
## [doc0960] bishop of Hereford ( |approximate | date )              
## [doc0960] sian mathematician ( |approximate | date ) Aimoin , Fren
## [doc0960] hip of Queen Gudit ( |approximate | date ) .            
## [doc0960]  as Taoist goddess ( |approximate | date ) Sharaf al - D
## [doc0960]  nobleman ( earl ) ( |approximate | date ) Sweyn Forkbea
## [doc0960] rt to Christianity ( |approximate | date ) .            
## [doc0960]  , Viking nobleman ( |approximate | date ) Caslav , prin
## [doc0960] shop of Hildesheim ( |approximate | date ) Constantine V
## [doc0961] Chinese chancellor ( |approximate | date ) Minamoto no T
## [doc0961] h princess and nun ( |approximate | date ) Fujiwara no M
## [doc0961]  Caen ( Normandy ) ( |approximate | date ) .            
## [doc0961] e Grand chancellor ( |approximate | date ) Mahendradatta
## [doc0962]  , French nobleman ( |approximate | date ) Edward II ( M
## [doc0962]  , Chinese painter ( |approximate | date ) Gao Baoxu , k
## [doc0963] rincess and abbess ( |approximate | date ) Li Jiqian , C
## [doc0963] Dawla , Buyid emir ( |approximate | date ) Snorri Goði ,
## [doc0963] hop of St. Andrews ( |approximate | date ) Goltregoda , 
## [doc0965]  , Chinese general ( |approximate | date ) Hedwig of Sax
## [doc0965] och , Jewish rabbi ( |approximate | date ) Joseph Bringa
## [doc0965] Chinese chancellor ( |approximate | date )              
## [doc0965] orwegian chieftain ( |approximate | date ) Hugh I , coun
## [doc0965] , Norman historian ( |approximate | date ) Frederick of 
## [doc0966] , king of Scotland ( |approximate | date ) Louis V , kin
## [doc0966]  , king of England ( |approximate | date )              
## [doc0966]  , Obotrite prince ( |approximate | date ) Rashiq al - N
## [doc0966] wold of Winchester ( |approximate | date ) .            
## [doc0966] oet and court lady ( |approximate | date ) January – Fuj
## [doc0967] gir , Ziyarid emir ( |approximate | date ) Wahsudan ibn 
## [doc0967] , duke of Lorraine ( |approximate | date ) Lin Bu , Chin
## [doc0967] amdanid astrologer ( |approximate | date ) Ashot III , p
## [doc0967] y Estonian Vikings ( |approximate | date ) .            
## [doc0968] hop of Lindisfarne ( |approximate | date )              
## [doc0968] fe of Edward Elder ( |approximate | date ) John III , du
## [doc0969]  bishop of Meissen ( |approximate | date ) December – Fu
## [doc0970] , Spanish nobleman ( |approximate | date ) William III ,
## [doc0970]  , German nobleman ( |approximate | date ) Heribert , ar
## [doc0970]  Frankish nobleman ( |approximate | date ) Fernán Gonzál
## [doc0970] , king of Scotland ( |approximate | date ) Fulk III ( Bl
## [doc0970] Lake Mashu , Japan ( |approximate | date ) .            
## [doc0971] ng , king of Wuyue ( |approximate | date ) Ziri ibn Mana
## [doc0971] h count and bishop ( |approximate | date ) Rajendra Chol
## [doc0971] p of Vic ( Spain ) ( |approximate | date ) Cuilén ( or C
## [doc0972] , Chinese official ( |approximate | date ) Fujiwara no K
## [doc0972]  count of Boulogne ( |approximate | date ) Boleslaus I (
## [doc0973] rincess and abbess ( |approximate | date ) Abul ' Ala Al
## [doc0973]  canoness and poet ( |approximate | date ) Jawdhar , Fat
## [doc0973] o his overlordship ( |approximate | date ) .            
## [doc0973]  and Islamic world ( |approximate | date ) .            
## [doc0973]  Byzantine general ( |approximate | date ) Reginar III ,
## [doc0975] ng era of warlords ( |approximate | date ) .            
## [doc0975] on , French bishop ( |approximate | date ) Izumi Shikibu
## [doc0975]  , duke of Bohemia ( |approximate | date ) .            
## [doc0975] I , king of Sweden ( |approximate | date ) Theobald I , 
## [doc0975] I , count of Savoy ( |approximate | date ) Bouchard II ,
## [doc0975]  abbot of Crowland ( |approximate | date ) Cyneweard , b
## [doc0976]  , German nobleman ( |approximate | date )              
## [doc0976] bu , Japanese poet ( |approximate | date ) January – Joh
## [doc0976] bishop of Grenoble ( |approximate | date ) Kvirike II , 
## [doc0977] nese Buddhist monk ( |approximate | date ) Poppo , abbot
## [doc0977] owers and no apses ( |approximate | date ) .            
## [doc0977]  prince of Salerno ( |approximate | date ) Guo Zhongshu 
## [doc0978]  , Chinese general ( |approximate | date ) Aboazar Loves
## [doc0978]  prince of Polotsk ( |approximate | date ) [ ]          
## [doc0978] dez , count of Cea ( |approximate | date ) Ibn Hawqal , 
## [doc0978] ne empress consort ( |approximate | date ) February – Lu
## [doc0978]  , Chinese general ( |approximate | date )              
## [doc0978] dez , count of Cea ( |approximate | date ) Ibn Hawqal , 
## [doc0978]  Viking adventurer ( |approximate | date ) Gyeongsun , k
## [doc0978] e grand chancellor ( |approximate | date ) Yaroslav I ( 
## [doc0978]  prince of Polotsk ( |approximate | date ) [ ]          
## [doc0978] nau , German abbot ( |approximate | date ) Elvira of Cas
## [doc0980] and Prince of Kiev ( |approximate | date )              
## [doc0980]  , German nobleman ( |approximate | date ) September – M
## [doc0980] egian Viking queen ( |approximate | date ) Ibn Khalawayh
## [doc0980] and Prince of Kiev ( |approximate | date )              
## [doc0980]  , German nobleman ( |approximate | date ) Avicenna , Pe
## [doc0980] , Italian nobleman ( |approximate | date ) Domnall ua Né
## [doc0981] Dynasty , in India ( |approximate | date ) .            
## [doc0981]  , German nobleman ( |approximate | date )              
## [doc0981] rse Viking warrior ( |approximate | date ) Vladivoj , du
## [doc0982] , Farighunid ruler ( |approximate | date ) Abu'l - Husai
## [doc0983]  - Saxon ealdorman ( |approximate | date ) Antony III ( 
## [doc0983] a , Icelandic poet ( |approximate | date )              
## [doc0983] o - Norse nobleman ( |approximate | date ) March – ' Adu
## [doc0984] rk and Norway ( d. ; |approximate | date )              
## [doc0984] loinn , Irish poet ( |approximate | date ) Gerberga , Fr
## [doc0985]  , Norman nobleman ( |approximate | date ) Gisela ( or G
## [doc0985]  , Norman nobleman ( |approximate | date ) Pilgrim , arc
## [doc0985] argrave of Austria ( |approximate | date ) Boniface III 
## [doc0986] rchbishop of Trier ( |approximate | date ) Reginald I , 
## [doc0986] ) , duke of Poland ( |approximate | date ) Constance of 
## [doc0987] nobleman September ( |approximate | date ) –            
## [doc0988]  Frankish nobleman ( |approximate | date )              
## [doc0988]  , queen of Poland ( |approximate | date ) Kalokyros Del
## [doc0988]  , king of Croatia ( |approximate | date ) Tilopa , Indi
## [doc0988] ang dynasty models ( |approximate | date ) .            
## [doc0988] n or by impalement ( |approximate | date ) .            
## [doc0989] gravine of Meissen ( |approximate | date ) January – Ada
## [doc0989] ael king of Dublin ( |approximate | date ) Gofraid mac A
## [doc0990] iter and physician ( |approximate | date ) Dunash ben La
## [doc0990] r , Serbian prince ( |approximate | date ) Kálfr Árnason
## [doc0990]  Benedictine abbot ( |approximate | date ) Al - Qadi Abu
## [doc0990] ng Sweyn Forkbeard ( |approximate | date ) .            
## [doc0990] I , king of Poland ( |approximate | date ) Nissim ben Ja
## [doc0992]                      |Approximate | date – Norse Viking 
## [doc0992] o , doge of Venice ( |approximate | date ) Ulric Manfred
## [doc0994] dalusian physician ( |approximate | date ) Sancho Garcés
## [doc0994] , king of Pamplona ( |approximate | date ) Simeon , Norm
## [doc0995] sson , Viking poet ( |approximate | date ) Eric VI ( Vic
## [doc0995]  , Obodrite prince ( |approximate | date ) Song , empres
## [doc0995]  of Upper Lorraine ( |approximate | date ) Herman II , a
## [doc0996] en consort of León ( |approximate | date )              
## [doc0996]  consort of Poland ( |approximate | date ) March –      
## [doc0997] duchess and regent ( |approximate | date ) Godfrey III ,
## [doc0997] n ' from Gregory V ( |approximate | date ) .            
## [doc0998] rman and historian ( |approximate | date ) Koppány ( or 
## [doc0999]  of Tours , French ( |approximate | date ) ( d. ) Fujiwa
## [doc0999]  Gwynedd ( Wales ) ( |approximate | date )              
## [doc1000]  duke of Carinthia ( |approximate | date ) Constantine I
## [doc1000]  , Norman nobleman ( |approximate | date ) Guigues I , F
## [doc1000] , Farighunid ruler ( |approximate | date ) Abu- Mahmud K
## [doc1000] ishop of Paderborn ( |approximate | date ) Sylvester III
## [doc1000]  Byzantine general ( |approximate | date )              
## [doc1000]    Chinese painter ( |approximate | date ) May – Ramwold
## [doc1001] d in North America ( |approximate | date ) .            
## [doc1002]  , king of Georgia ( |approximate | date ) Mei Yaochen ,
## [doc1002] ter a - year reign ( |approximate | date ) .            
## [doc1002]  , king of Viguera ( |approximate | date )              
## [doc1002]  , French princess ( |approximate | date ) Godfrey I ( P
## [doc1003]  surrenders to him ( |approximate | date ) .            
## [doc1003] se Viking explorer ( |approximate | date ) Flannchad ua 
## [doc1003]  , bishop of Nusco ( |approximate | date ) Conrad II ( Y
## [doc1003] se of Transylvania ( |approximate | date ) .            
## [doc1004] capital of Kaifeng ( |approximate | date ) .            
## [doc1004] f Æthelred Unready ( |approximate | date ) Guido of Acqu
## [doc1004]  king of Justanids ( |approximate | date ) Li , empress 
## [doc1004] , English nobleman ( |approximate | date )              
## [doc1005]  , Norman nobleman ( |approximate | date )              
## [doc1005] aman and matriarch ( |approximate | date ) Berenguer Ram
## [doc1005]  prince of Gwynedd ( |approximate | date ) Lê Hoàn , emp
## [doc1005] ror Kazan of Japan ( |approximate | date ) .            
## [doc1006] shop of Winchester ( |approximate | date )              
## [doc1007]  duke of Carinthia ( |approximate | date ) February – Æl
## [doc1007] ount of Luxembourg ( |approximate | date ) Hugh Magnus (
## [doc1007] prince and co-heir ( |approximate | date ) Gervais de Ch
## [doc1008] aliphate and China ( |approximate | date ) .            
## [doc1008]  , Japanese writer ( |approximate | date ) Wulfstan , bi
## [doc1008] ghusa , Irish poet ( |approximate | date ) Gunnlaugr Orm
## [doc1008]  missionary bishop ( |approximate | date ) Raymond III ,
## [doc1010]  Byzantine catepan ( |approximate | date ) Maelsuthan Ua
## [doc1010] sly in Old English ( |approximate | date ) .            
## [doc1010] t in North America ( |approximate | date ) .            
## [doc1010]  abbot and scholar ( |approximate | date ) Abu'l - Nasr 
## [doc1010] bishop of Würzburg ( |approximate | date ) Adalbero III 
## [doc1010]  Genji in Japanese ( |approximate | date ) .            
## [doc1010] obleman and deacon ( |approximate | date ) Benno , bisho
## [doc1010] of Catholic Church ( |approximate | date ) John V of Gae
## [doc1010] eram , German monk ( |approximate | date ) Siegfried I ,
## [doc1011] , Italian nobleman ( |approximate | date ) Conrad I , du
## [doc1011] I , count of Namur ( |approximate | date )              
## [doc1012] of Catholic Church ( |approximate | date )              
## [doc1012]  of Lower Lorraine ( |approximate | date ) Qabus , Ziyar
## [doc1012]                      |Approximate | date –              
## [doc1012] of Troarn , French ( |approximate | date ) García Sánche
## [doc1013] , Italian nobleman ( |approximate | date ) Isaac Alfasi 
## [doc1013]  , French nobleman ( |approximate | date ) Chandler , Te
## [doc1013] nty to a bishopric ( |approximate | date ) .            
## [doc1014]  , king of Gwynedd ( |approximate | date ) Iestyn ap Gwr
## [doc1014] ishop of Sherborne ( |approximate | date )              
## [doc1014] rgrave of Provence ( |approximate | date ) Theophylact B
## [doc1015] I , count of Maine ( |approximate | date ) Ibn Furak , M
## [doc1015]  , Norman nobleman ( |approximate | date ) Sigeferth ( o
## [doc1015] , bishop of Passau ( |approximate | date ) Ermesinda of 
## [doc1015] V , duke of Swabia ( |approximate | date ) John Komnenos
## [doc1015]  , Norman nobleman ( |approximate | date ) Sigeferth ( o
## [doc1015] I , count of Maine ( |approximate | date ) Ibn Furak , M
## [doc1016] tnamese Zen master ( |approximate | date ) Minamoto no T
## [doc1017] o ) , king of León ( |approximate | date ) Floris I , co
## [doc1017]  , Kyiv is started ( |approximate | date ) .            
## [doc1018] nk and philosopher ( |approximate | date )              
## [doc1019]  , king of Denmark ( |approximate | date ) Wang Gui , Ch
## [doc1020] shop and architect ( |approximate | date ) Bernard of Me
## [doc1020] es laws of England ( |approximate | date ) .            
## [doc1020] se Viking explorer ( |approximate | date ) Melus of Bari
## [doc1020] f Bagratid Armenia ( |approximate | date ) Gerald I ( Tr
## [doc1020] sian mathematician ( |approximate | date ) Bernard I ( T
## [doc1020]  landscape painter ( |approximate | date ) Hallvard Vebj
## [doc1020]  , duke of Bavaria ( |approximate | date ) Stephen IX , 
## [doc1021] ficial and general ( |approximate | date ) Mac Cú Ceanai
## [doc1021] liphate of Córdoba ( |approximate | date ) .            
## [doc1022] ce turn of century ( |approximate | date ) .            
## [doc1022] f , duke of Saxony ( |approximate | date ) Rajaraja Nare
## [doc1022]  , king of England ( |approximate | date ) Manasses III 
## [doc1023] ) , count of Savoy ( |approximate | date ) Ramon Berengu
## [doc1023] cupies Transoxiana ( |approximate | date ) .            
## [doc1024]  , bishop of Wells ( |approximate | date ) Choe Hang , c
## [doc1024]  of million dinars ( |approximate | date ) .            
## [doc1025]  , Armenian prince ( |approximate | date ) Rudolf of Rhe
## [doc1025] ex , English queen ( |approximate | date ) Elisaveta Yar
## [doc1026] arl of Northumbria ( |approximate | date ) Pope Victor I
## [doc1026] , lord of Lusignan ( |approximate | date )              
## [doc1027] hbishop of Gniezno ( |approximate | date ) Walter of Spe
## [doc1027] ( House of Namur ) ( |approximate | date ) Al - Mu'tamid
## [doc1027] k Abbey in England ( |approximate | date ) .            
## [doc1028] e ( modern Spain ) ( |approximate | date ) .            
## [doc1028] hop of Halberstadt ( |approximate | date ) Nuño Álvarez 
## [doc1028]  , king of England ( |approximate | date ) ( d. ) Januar
## [doc1029] ial and politician ( |approximate | date ) Salih ibn Mir
## [doc1029] ician and engineer ( |approximate | date ) Fujiwara no K
## [doc1029] oravia from Poland ( |approximate | date ) .            
## [doc1029]  Japanese nobleman ( |approximate | date ) Haakon Ericss
## [doc1029] of Catholic Church ( |approximate | date ) Kaoruko ( or 
## [doc1030] h queen and regent ( |approximate | date ) Baldwin VI ( 
## [doc1030]  German noblewoman ( |approximate | date )              
## [doc1030]  landscape painter ( |approximate | date ) Gormflaith in
## [doc1030] , king of Connacht ( |approximate | date ) William IV , 
## [doc1030] ountess of Holland ( |approximate | date ) Manegold of L
## [doc1031] , duke of Brittany ( |approximate | date ) Matilda of Fl
## [doc1032] ev Caves Monastery ( |approximate | date ) .            
## [doc1032] , king of Scotland ( |approximate | date ) Ermengol III 
## [doc1032] , bishop of Exeter ( |approximate | date ) Touzi Yiqing 
## [doc1032] , English nobleman ( |approximated| date ) Hugh de Grand
## [doc1033] , duke of Brittany ( |approximate | date ) Fujiwara no A
## [doc1033] s , German duchess ( |approximate | date )              
## [doc1034] ntemor - o - Velho ( |approximate | date ) .            
## [doc1034]  , French nobleman ( |approximate | date ) Manuchihr I ,
## [doc1035]  , French nobleman ( |approximate | date ) Hereward Wake
## [doc1035] of Normandy ( b. ) ( |approximate | date ) October – San
## [doc1035] eman ( d. c.1090 ) ( |approximate | date )              
## [doc1037] uchess of Brittany ( |approximate | date )              
## [doc1038] , Spanish nobleman ( |approximate | date ) March –      
## [doc1038] r almost a century ( |approximate | date ) .            
## [doc1039]  , Norman nobleman ( |approximate | date ) Sancho IV , k
## [doc1040]  , Norman nobleman ( |approximate | date ) Alfonso VI , 
## [doc1040]  , king of Hungary ( |approximate | date ) Guglielmo Emb
## [doc1040]  regime of Kalbids ( |approximate | date ) .            
## [doc1040]  , Norman nobleman ( |approximate | date ) Sikelgaita , 
## [doc1040] ibetan lama - king ( |approximate | date )              
## [doc1040]  , Norman nobleman ( |approximate | date ) Helias of Col
## [doc1040]  , Lombard duchess ( |approximate | date ) Dietrich I , 
## [doc1040]  , French countess ( |approximate | date ) I vo of Chart
## [doc1041] Japanese waka poet ( |approximate | date ) Eadwulf IV , 
## [doc1041] a million soldiers ( |approximate | date ) .            
## [doc1042] n , invade Morocco ( |approximate | date ) .            
## [doc1042] rs of Islamic rule ( |approximate | date ) .            
## [doc1042] s , king of Poland ( |approximate | date ) Canute IV ( H
## [doc1043] of Ziyarid Dynasty ( |approximate | date ) .            
## [doc1046]  count of Gâtinais ( |approximate | date ) Gerard of Csa
## [doc1046] Denmark and Sweden ( |approximate | date ) Leo Marsicanu
## [doc1047]  , French nobleman ( |approximate | date ) [ ]          
## [doc1047]  duchess of Poland ( |approximate | date ) [ ] Xiang , e
## [doc1048] lish sheriff reeve ( |approximate | date ) Magnus II ( H
## [doc1048]  , Scottish bishop ( |approximate | date ) January – Pop
## [doc1048] rdrada ) of Norway ( |approximate | date ) . [ ] or - En
## [doc1049] ve , Flemish saint ( |approximate | date ) Hermann II , 
## [doc1049] tis , Italian monk ( |approximate | date ) Saw Lu , king
## [doc1050]  Byzantine emperor ( |approximate | date ) [ ]          
## [doc1050] o , king of Ladakh ( |approximate | date ) [ ] [ ]      
## [doc1050]  Norman noblewoman ( |approximate | date ) [ ]          
## [doc1050] I , duke of Swabia ( |approximate | date ) [ ] [ ] Bertr
## [doc1050] do , Spanish saint ( |approximate | date ) [ ] [ ] Const
## [doc1050]  , king of Munster ( |approximate | date ) [ ] [ ]      
## [doc1050]  , king of Denmark ( |approximate | date ) [ citation ne
## [doc1050]  , German nobleman ( |approximate | date ) [ citation ne
## [doc1050] breweries in world ( |approximate | date ) . [ ] [ ] [ ]
## [doc1050] it , French priest ( |approximate | date ) [ ] [ ] Sophi
## [doc1052]  , Chinese painter ( |approximate | date ) Xuedou Chongx
## [doc1052] I , count of Savoy ( |approximate | date ) Guaimar IV of
## [doc1052]  countess of Savoy ( |approximate | date ) Conrad II ( C
## [doc1052]  , Norman nobleman ( |approximate | date ) Roman Svyatos
## [doc1052] ch , Kievan prince ( |approximate | date ) Jón Ögmundsso
## [doc1053] uring Heian Period ( |approximate | date ) .            
## [doc1053] count of Barcelona ( |approximate | date )              
## [doc1054]  - Norman nobleman ( |approximate | date ) George II ( G
## [doc1055]  , king of Gwynedd ( |approximate | date )              
## [doc1055] n , Seljuk empress ( |approximate | date ) Vigrahapala I
## [doc1056]  French chronicler ( |approximate | date ) Benedict IX ,
## [doc1056] , count of Hainaut ( |approximate | date ) Ermengol IV (
## [doc1056]  French noblewoman ( |approximate | date ) Ibn Tahir of 
## [doc1057] -settle to Mahdiya ( |approximate | date ) .            
## [doc1057]  Russian statesman ( |approximate | date ) Otto I ( or O
## [doc1058] consort of Hungary ( |approximate | date ) Theodora Anna
## [doc1058] ishop of Sherborne ( |approximate | date ) Al - Mawardi 
## [doc1058] Persian and jurist ( |approximate | date ) Ibn Bassam , 
## [doc1059]  Limburg and Arlon ( |approximate | date ) Ngok Loden Sh
## [doc1059] y Byzantine forces ( |approximate | date ) .            
## [doc1060] andy , as a novice ( |approximate | date ) . [ ] [ ] [ ]
## [doc1060] ) , count of Savoy ( |approximate | date ) [ ][ ] [ ] Po
## [doc1060] count of Heinsberg ( |approximate | date ) [ ]          
## [doc1060]  , Norman nobleman ( |approximate | date ) Roger Borsa ,
## [doc1060] d , king of Sweden ( |approximate | date ) [ ][ ][ ]    
## [doc1060]  , German nobleman ( |approximate | date ) [ citation ne
## [doc1060]  , German nobleman ( |approximate | date ) [ ] [ ]      
## [doc1060] , count of Louvain ( |approximate | date ) [ ] [ ] [ ]  
## [doc1060] ng , English abbot ( |approximate | date ) Tokushi , Jap
## [doc1060] , king of Scotland ( |approximate | date ) [ ] Constanti
## [doc1060]  , Norman nobleman ( |approximate | date ) [ ] [ ] Herma
## [doc1060]  , German nobleman ( |approximate | date ) [ citation ne
## [doc1060]  , king of Denmark ( |approximate | date ) [ citation ne
## [doc1061]  bishop of Brescia ( |approximate | date )              
## [doc1062]  , Danish nobleman ( |approximate | date ) Fujiwara no M
## [doc1062]  , French nobleman ( |approximate | date ) Mu'izz al - D
## [doc1063] Basilica at Venice ( |approximate | date ) .            
## [doc1063] or at Abbey of Bec ( |approximate | date ) .            
## [doc1064]  , Chinese painter ( |approximate | date )              
## [doc1064] g , Welsh nobleman ( |approximate | date ) Yaakov ben Ya
## [doc1064] ona ) first erupts ( |approximate | date ) Adela of Flan
## [doc1065]  , duke of Bohemia ( |approximate | date ) Walter Tirel 
## [doc1065]  count of Flanders ( |approximate | date )              
## [doc1065] g , Welsh nobleman ( |approximate | date ) Thorfinn ( Mi
## [doc1065] uchess of Burgundy ( |approximate | date )              
## [doc1065] n , bishop of Sion ( |approximate | date ) Henry I ( Lon
## [doc1066] , English nobleman ( |approximate | date ) Godfrey of Am
## [doc1067] Byzantine governor ( |approximate | date ) January – Yin
## [doc1067]  countess of Blois ( |approximate | date )              
## [doc1068] nomer and polymath ( |approximate | date ) Ermengarde of
## [doc1069]  practitioner ( b. ) |Approximate | date – Rhiwallon ap 
## [doc1069] e co-emperor ( d . ) |Approximate | date Mieszko Bolesla
## [doc1070]  Burgundian knight ( |approximate | date ) Thurstan , ar
## [doc1070] ns , French knight ( |approximate | date ) John Komnenos
## [doc1070]  , German nobleman ( |approximate | date ) Otto ( Rich )
## [doc1070]                      |Approximate | date – Halsten Stenk
## [doc1070] ve , Flemish saint ( |approximate | date )              
## [doc1070] ve , Flemish saint ( |approximate | date )              
## [doc1070] ount of Gudensberg ( |approximate | date ) Gualfardo of 
## [doc1071]  , Norman nobleman ( |approximate | date )              
## [doc1072] eram , German monk ( |approximate | date ) Qatran Tabriz
## [doc1073]  French noblewoman ( |approximate | date ) Shaykh Tabars
## [doc1073] ) , king of Aragon ( |approximate | date ) Al - Tighnari
## [doc1073]  , king of Gwynedd ( |approximate | date ) Peter Damian 
## [doc1074] count of Champagne ( |approximate | date ) Ibn al - Tilm
## [doc1075] yzantine historian ( |approximate | date )              
## [doc1075] Aragon and Navarre ( |approximate | date ) Conrad I , ar
## [doc1075] i<U+1E6D>aka is completed ( |approximate | date ) .            
## [doc1076] eged by Almoravids ( |approximate | date ) .            
## [doc1076] to Norman Conquest ( |approximate | date ) .            
## [doc1076] n queen and regent ( |approximate | date ) Urban ( or Gw
## [doc1077]  , and reach Spain ( |approximate | date ) .            
## [doc1078] ishop of Rochester ( |approximate | date ) .            
## [doc1079] brother Inge Elder ( |approximate | date ) .            
## [doc1079] eometric solutions ( |approximate | date ) .            
## [doc1079]  Song dynasty ( d. ) |Approximate | date –              
## [doc1079]  duchess of Swabia ( |approximate | date ) Aedh Ua Flait
## [doc1079] onastery in Burgos ( |approximate | date ) .            
## [doc1079] d , king of Sweden ( |approximate | date ) Íñigo López ,
## [doc1080] f Cilician Armenia ( |approximate | date ) Lhachen Utpal
## [doc1080] op of St. David 's ( |approximate | date ) Aristakes Las
## [doc1080] ur , French bishop ( |approximate | date ) Cellach of Ar
## [doc1080] rchbishop of Mainz ( |approximate | date ) Honorius Augu
## [doc1080] uchess of Brittany ( |approximate | date ) Haakon Ivarss
## [doc1081] f Emperor Henry IV ( |approximate | date ) .            
## [doc1081] ) , king of France ( |approximate | date ) Gruffydd ap R
## [doc1081]  of Pallars Sobirà ( |approximate | date ) Bernard of Me
## [doc1082] itaka is completed ( |approximate | date ) .            
## [doc1082] , Italian nobleman ( |approximate | date ) Yaropolk II V
## [doc1083] alatine of Bavaria ( |approximate | date )              
## [doc1084] n , king of Sweden ( |approximate | date ) Herfast ( or 
## [doc1084] , king of Scotland ( |approximate | date ) Li Qingzhao ,
## [doc1085] m , English priest ( |approximate | date ) Imad ad - Din
## [doc1085]  , Norman nobleman ( |approximate | date ) Wang Gui , Ch
## [doc1085]  ruler of Khorasan ( |approximate | date ) Alberich of R
## [doc1085] zantine aristocrat ( |approximate | date ) Elizabeth of 
## [doc1087] elf king of Sweden ( |approximate | date ) .            
## [doc1087] , king of Svealand ( |approximate | date ) Eustace II , 
## [doc1087] an poet and writer ( |approximate | date ) Reginald III 
## [doc1088] s founded in Italy ( |approximate | date ) .            
## [doc1088] nce and archbishop ( |approximate | date )              
## [doc1088]  , Norman nobleman ( |approximate | date ) John Doukas ,
## [doc1089] count of Angoulême ( |approximate | date ) May – Lanfran
## [doc1089] le poet and writer ( |approximate | date )              
## [doc1090]  , king of Denmark ( |approximate | date ) Fujiwara no A
## [doc1090] lian canon regular ( |approximate | date ) Bernard of Cl
## [doc1090] onge ) and Gascony ( |approximate | date ) .            
## [doc1090] ess of Quedlinburg ( |approximate | date )              
## [doc1090] lian canon regular ( |approximate | date ) Bernard of Cl
## [doc1091]  duke of Pomerania ( |approximate | date ) March – Walla
## [doc1091] , queen of Croatia ( |approximate | date ) Jordan I ( or
## [doc1091] lord of Gloucester ( |approximate | date ) .            
## [doc1092] hbishop of Gniezno ( |approximate | date ) Ermengol IV (
## [doc1093]  / Norman nobleman ( |approximate | year ) August –     
## [doc1093]  count of Ponthieu ( |approximate | date ) February – Ab
## [doc1093]  , king of Georgia ( |approximate | date ) Gerhoh of Rei
## [doc1093]  count of Provence ( |approximate | date )              
## [doc1094] n , Almohad caliph ( |approximate | date ) Ibn Zuhr ( or
## [doc1095] ecrated in Valence ( |approximate | date ) .            
## [doc1095] , Earl of Cornwall ( |approximate | date )              
## [doc1096] shop of Winchester ( |approximate | date ) Hugh of Saint
## [doc1096]  , king of England ( |approximate | date ) Taira no Tada
## [doc1096]  , Norman nobleman ( |approximate | date ) Sarakhsi , Pe
## [doc1097] argrave of Meissen ( |approximate | date ) Muhammad Buzu
## [doc1099] ise , French abbot ( |approximate | date )              
## [doc1100] eckers is invented ( |approximate | date ) . [ ] May – J
## [doc1100]  to a written form ( |approximate | date ) .            
## [doc1100] , Swedish nobleman ( |approximate | date )              
## [doc1100]  Peru ) is founded ( |approximate | date ) .            
## [doc1100]  , king of Gwynedd ( |approximate | date ) Jacob ben Mei
## [doc1100] rg , German bishop ( |approximate | date ) Arnold I , ar
## [doc1100] uring Song Dynasty ( |approximate | date ) .            
## [doc1100] f Faroe is founded ( |approximate | date ) .            
## [doc1100] d States ) , rises ( |approximate | date ) .            
## [doc1100] se poet and writer ( |approximate | date ) Qutb al - din
## [doc1100] larly institutions ( |approximate | date ) .            
## [doc1101] n , king of Duklja ( |approximate | date ) Egilbert ( or
## [doc1101] tings is completed ( |approximate | date ) .            
## [doc1102] , queen of Hungary ( |approximate | date ) Fujiwara no K
## [doc1103] rchdiocese of Lund ( |approximate | date ) .            
## [doc1103] ov , Kievan prince ( |approximate | date ) Wivina , Fren
## [doc1104] nly 1,500 warriors ( |approximate | date ) .            
## [doc1105] r , king of Sweden ( |approximate | date ) Malik - Shah 
## [doc1107]  Damascus in Syria ( |approximate | date ) .            
## [doc1107]  to counterfeiting ( |approximate | date ) .            
## [doc1108] r Japanese control ( |approximate | date ) .            
## [doc1108] ishop of Mondoñedo ( |approximate | date ) Gregory III ,
## [doc1109]  cathedral at Laon ( |approximate | date ) .            
## [doc1110]  countess of Essex ( |approximate | date ) Rostislav I ,
## [doc1110] h rabbi and writer ( |approximate | date ) Abraham ibn D
## [doc1110] ach , German queen ( |approximate | date )              
## [doc1110]                      |Approximate | date of composition 
## [doc1110] h abbot and bishop ( |approximate | date ) Hodierna of J
## [doc1113] Sainte - Geneviève ( |approximate | date ) .            
## [doc1113] in Diocese of York ( |approximate | date ) .            
## [doc1114]  , German nobleman ( |approximate | date ) Gerard of Cre
## [doc1115] ) , king of Norway ( |approximate | date ) Pedro Fernánd
## [doc1115]  of Pallars Sobirà ( |approximate | date ) Eight Deer Ja
## [doc1115] nastery near Kyoto ( |approximate | date ) .            
## [doc1115] e , Earl of Oxford ( |approximate | date ) Berenguer Ray
## [doc1116] Spanish noblewoman ( |approximate | date ) Malik Shah , 
## [doc1118]  , queen of Norway ( |approximate | date ) Gualdim Pais 
## [doc1118] r , English bishop ( |approximate | date ) Saigyo Hoshi 
## [doc1118] I , king of Duklja ( |approximate | date ) William V of 
## [doc1119] , duke of Lorraine ( |approximate | date ) Tancred , Nor
## [doc1121] man , Persian poet ( |approximate | date ) Muireadhach U
## [doc1122] cian and scientist ( |approximate | date ) Isaac ben Abb
## [doc1122] cian and scientist ( |approximate | date ) Isaac ben Abb
## [doc1123] ) , count of Dreux ( |approximate | date ) February –   
## [doc1124] ishop. [ ] [ ] [ ] ( |Approximate | date ) –            
## [doc1125] tanae expeditionis ( |approximate | date ) .            
## [doc1125] count of Champagne ( |approximate | date ) Ibn al - Khas
## [doc1125] Albon and Grenoble ( |approximate | date ) Imad ad - Din
## [doc1125] Albon and Grenoble ( |approximate | date ) Imad ad - Din
## [doc1125] vid , French rabbi ( |approximate | date ) Baldwin of Fo
## [doc1125] r , king of Sweden ( |approximate | date ) Robert de Mow
## [doc1125]  count of Mörsberg ( |approximate | date ) Alina Martain
## [doc1126] nd lord of Tilston ( |approximate | date ) Fan Chengda ,
## [doc1126]  , French nobleman ( |approximate | date ) Wynebald de B
## [doc1126]  Swedish pretender ( |approximate | date ) Tong Guan , C
## [doc1126]  mystic and writer ( |approximate | date ) Al - Tutili (
## [doc1127] a , Spanish bishop ( |approximate | date ) Yang Wanli , 
## [doc1128] zantine aristocrat ( |approximate | date ) Lorcán Ua Tua
## [doc1128]  , French and poet ( |approximate | date )              
## [doc1130] Stephen of England ( |approximate | date ; d. ) [ ] [ ] 
## [doc1130] ly king. [ ] [ ] [ ] |Approximate | date –              
## [doc1131] n Jiangsu Province ( |approximate | date ) .            
## [doc1131]  duchess of Poland ( |approximate | date )              
## [doc1131]  , Polish nobleman ( |approximate | date ) Fujiwara no T
## [doc1134]  , German nobleman ( |approximate | date ) Fujiwara no K
## [doc1135]  , German nobleman ( |approximate | date ) Rainier ( or 
## [doc1135]  , French nobleman ( |approximate | date ) Bogumilus , a
## [doc1135] n , king of Norway ( |approximate | date ) Maimonides , 
## [doc1137] , bishop of Prague ( |approximate | date ) Ferdinand II 
## [doc1138] , bishop of Bangor ( |approximate | date ) Kiya Buzurg U
## [doc1140] , duke of Lorraine ( |approximate | date ) Sophia of Min
## [doc1140] gravine of Meissen ( |approximate | date ) Hugh de Padui
## [doc1140]  Decretum Gratiani ( |approximate | date ) .            
## [doc1142]  , French nobleman ( |approximate | date ) Moinuddin Chi
## [doc1144]  ) , Norman priest ( |approximate | date ) Reverter de L
## [doc1145]  , queen of Sweden ( |approximate | date ) Elizabeth of 
## [doc1145] queen of Jerusalem ( |approximate | date ) February – Lu
## [doc1145] s , Flemish priest ( |approximate | date ) Zhang Zeduan 
## [doc1145] n , king of Norway ( |approximate | date ) Sophia of Bav
## [doc1146] t Pullen , English ( |approximate | date ) Rodrigo Gómez
## [doc1149]  gains city rights ( |approximate | date ) .            
## [doc1149] nd merchants alike ( |approximate | date ) .            
## [doc1150] chbishop of Dublin ( |approximate | date )              
## [doc1150] atalonian nobleman ( |approximate | date ) Robert IV , F
## [doc1150]  bishop of Meissen ( |approximate | date ) Renier de Huy
## [doc1150] torum ) is written ( |approximate | date ) .            
## [doc1152]  Scottish nobleman ( |approximate | date ) Roger IV , du
## [doc1155] ruler Rawal Jaisal ( |approximate | date ) .            
## [doc1155]  , duke of Bohemia ( |approximate | date ) Sicard of Cre
## [doc1156]  within settlement ( |approximate | date ) .            
## [doc1157] rchants of Lincoln ( |approximate | date ) .            
## [doc1159] iphs . [ ] [ ] [ ] ( |Approximate | date ) : Churchman R
## [doc1160] o Tuscan merchants ( |approximate | date ) .            
## [doc1160] oet and troubadour ( |approximate | date ) David Kimhi ,
## [doc1161] fe of Genghis Khan ( |approximate | date ) Constance , d
## [doc1162] er , Earl of Essex ( |approximate | date )              
## [doc1165] ine near Rüdesheim ( |approximate | date ) .            
## [doc1166] IV , lord of Toron ( |approximate | date ) Judah ben Isa
## [doc1167] panish philosopher ( |approximate | date )              
## [doc1168] rs , Earl of Derby ( |approximate | date ) January –    
## [doc1169] , Japanese samurai ( |approximate | date ) Taira no Atsu
## [doc1170] ian nun and abbess ( |approximate | date ) Gebhard I of 
## [doc1170] duchess of Brabant ( |approximate | date ) Minamoto no I
## [doc1170] Earl of Winchester ( |approximate | date ) Sophia of Wit
## [doc1170] sh Chief Justiciar ( |approximate | date ) John of Brien
## [doc1173] l methods in realm ( |approximate | date ) .            
## [doc1173] t of Berg - Altena ( |approximate | date ) Isabella , co
## [doc1173] Mosul is completed ( |approximate | date ) .            
## [doc1176]  , prince of Minsk ( |approximate | date )              
## [doc1176] y , Earl of Ulster ( |approximate | date )              
## [doc1176]  , French princess ( |approximate | date ) Fujiwara no T
## [doc1178] level is completed ( |approximate | date ) .            
## [doc1179] uddhism is founded ( |approximate | date ) .            
## [doc1179] , ruler of Mayapan ( |approximate | date ) .            
## [doc1180] ) , king of Sweden ( |approximate | date ) Fernán Gutiér
## [doc1180] onvenes at Leczyca ( |approximate | date ) .            
## [doc1180] England and France ( |approximate | date ) .            
## [doc1180] y mention of chess ( |approximate | date ) .            
## [doc1182]  Byzantine emperor ( |approximate | date ) Alice of Verg
## [doc1184] , queen of Hungary ( |approximate | date ) Aindréas of C
## [doc1184]  Japanese nobleman ( |approximate | date ) Taira no Tada
## [doc1185]  , German nobleman ( |approximate | date ) Engelbert II 
## [doc1190]  , Norman nobleman ( |approximate | date ) Chrétien de T
## [doc1190] stablish hospitals ( |approximate | date ) .            
## [doc1190] rincess of Antioch ( |approximate | date ) Henry II of B
## [doc1190] Moorish astronomer ( |approximate | date ) February – Ot
## [doc1190] ipt , is published ( |approximate | date ) .            
## [doc1191]  capital of Champa ( |approximate | date ) .            
## [doc1191]  queen of Leinster ( |approximate | date ) Richard de Ca
## [doc1191]  , Norman nobleman ( |approximate | date ) Theobald I , 
## [doc1191] , English nobleman ( |approximate | date ) George IV ( o
## [doc1193]  Scottish nobleman ( |approximate | date )              
## [doc1193]  , Norman nobleman ( |approximate | date ) Juliana of Li
## [doc1194]  , Norman nobleman ( |approximate | date ) Rusudan , que
## [doc1196] Italian chronicler ( |approximate | date ) Hugh III of R
## [doc1196] ) , king of Sweden ( |approximate | date ) Dulcea of Wor
## [doc1197] in northern France ( |approximate | date ) .            
## [doc1198]  , Polish nobleman ( |approximate | date ) Koun Ejo , Ja
## [doc1198] ncess and countess ( |approximate | date ) Constantine I
## [doc1200] , English satirist ( |approximate | date ) Osbern of Glo
## [doc1207]  its first charter ( |approximate | date ) .            
## [doc1208]  , queen of Sweden ( |approximate | date ) Ermengol VIII
## [doc1209] alatine of Bavaria ( |approximate | date ) April – Elisa
## [doc1209] mbridge University ( |approximate | date ) .            
## [doc1209]  French troubadour ( |approximate | date ) John of Hexha
## [doc1209] ch priest and poet ( |approximate | date ) Rigord , Fren
## [doc1209] German minnesänger ( |approximate | date ) Alfonso II ( 
## [doc1210]  epic poem Tristan ( |approximate | date ) .            
## [doc1212] by Clare of Assisi ( |approximate | date ) .            
## [doc1214]  Exeter in England ( |approximate | date ) .            
## [doc1214] , Italian nobleman ( |approximate | date ) ( d. ) Januar
## [doc1222] is completed.[ ] [ ] |Approximate | date –              
## [doc1223] ) , Mongol general ( |approximate | date ) Mstislav Roma
## [doc1225]  French chronicler ( |approximate | date ) Zhao Hong , C
## [doc1230] ro , queen of León ( |approximate | date )              
## [doc1230] lection is created ( |approximate | date ) . [ ] Anna of
## [doc1235] Pope Boniface VIII ( |approximate | date ; d. ) [ ]     
## [doc1235]                      |Approximate | date –              
## [doc1235] Pope Boniface VIII ( |approximate | date ; d. ) [ ]     
## [doc1246] abitants of Lucera ( |approximate | date ) .            
## [doc1250] a dynasty in Samoa ( |approximate | date ) .            
## [doc1254] by Catholic Church ( |approximate | date ) .            
## [doc1260] ine grammarian and ( |approximate | date ; d. ) [ ] [ ] 
## [doc1260] n Kingdom ( d. ) [ ] |approximate | date Enguerrand de M
## [doc1260] ine grammarian and ( |approximate | date ; d. ) [ ] [ ] 
## [doc1263]  John I de Balliol ( |approximate | date ) .            
## [doc1263] t a synod in Arles ( |approximate | date ) .            
## [doc1264] of Jewish children ( |approximate | date ) .            
## [doc1264] ma contra Gentiles ( |approximate | date ) .            
## [doc1265] so III of Aragon [ ] |approximate | date – Dante Alighie
## [doc1265] f Castile ( d. ) [ ] |approximate | date –              
## [doc1269] t – West Schism of ( |approximate | date ) .            
## [doc1270] l Ilkhanate Empire ( |approximate | date ) .            
## [doc1270]  and poet ( d. ) [ ] |approximate | –                   
## [doc1271] ed by Yuan Dynasty ( |approximate | date ) .            
## [doc1273] ) in city of Konya ( |approximate | date ) .            
## [doc1275] ocks , is invented ( |approximate | date ) .            
## [doc1280]                  [ ] |Approximate | date                
## [doc1280]                      |Approximate | date Anna of Kashin 
## [doc1283] t during his reign ( |approximate | date ) .            
## [doc1283] Alfonso X ( Wise ) ( |approximate | date ) .            
## [doc1285] of Catholic Church ( |approximate | date ) May – Robert 
## [doc1285] ok Dane is written ( |approximate | date ) .            
## [doc1293] k , Flemish mystic ( |approximate | date ; d. ) [ ]     
## [doc1293] nciscan missionary ( |approximate | date ; b. c.1220 ) [
## [doc1293] nciscan missionary ( |approximate | date ; b. c.1220 ) [
## [doc1296] ishop of Caithness ( |approximate | date ) [ ] date unkn
## [doc1296] s observations . [ ] |approximate | date – Tarabya , sel
## [doc1296] ishop of Caithness ( |approximate | date ) [ ]          
## [doc1308] ropean Middle Ages ( |approximate | date ) .            
## [doc1312] sponsoring mosques ( |approximate | date ) .            
## [doc1313]  Banjska Monastery ( |approximate | date ) .            
## [doc1315] in Mongolian China ( |approximate | date ) .            
## [doc1318] nciscans get China ( |approximate | date ) .            
## [doc1321] ng to its colophon ( |approximate | date ) . [ ] January
## [doc1322] ent for first time ( |approximate | date ) .            
## [doc1332] litary leader ( d. ) |Approximate | William Langland , E
## [doc1332]  Yuan Dynasty ( b. ) |approximate | date –              
## [doc1341]                      |Approximate | date – Magnus Erikss
## [doc1342] h , English mystic ( |approximate | date ; d.           
## [doc1343] cer , English poet ( |approximate | date ) ( d . )      
## [doc1343] cer , English poet ( |approximate | date ) ( d . ) Janua
## [doc1350] ley of Isle of Man ( |approximate | date ; d. ) Hrvoje V
## [doc1350] s of John of Gaunt ( |approximate | date ; d. ) December
## [doc1350] ley of Isle of Man ( |approximate | date ; d. ) Hrvoje V
## [doc1350] Justice of England ( |approximate | date ; d. ) Thomas H
## [doc1363] irst doge of Genoa ( |approximate | date ) c. April –   
## [doc1365] i Sufi author ( d. ) |approximate | date –              
## [doc1366]                      |Approximate | Eleanor de Bohun , E
## [doc1369] of Georgia ( d. c. ) |approximate | –                   
## [doc1369] d philosopher ( d. ) |approximate | –                   
## [doc1372] l of Pembroke ( d. ) |approximate | date Helena Dragaš ,
## [doc1375]  , French composer ( |approximate | date ; d. )         
## [doc1375]  Earl of Cambridge ( |approximate | date ; d.           
## [doc1375]  Earl of Cambridge ( |approximate | date ; d. ) Nicolas 
## [doc1375]                      |Approximate | date –              
## [doc1385]  , Flemish painter ( |approximate | date ; d. ) Margaret
## [doc1390] esent day Ethiopia ( |approximate | date ) .            
## [doc1391]  , Countess of Mar ( |approximate | date ) Petru , Princ
## [doc1392] d political writer ( |approximate | date ; d. c. )      
## [doc1392] d political writer ( |approximate | date ; d. c. )      
## [doc1399] , English merchant ( |approximate | date ; d. ) Zara Yaq
## [doc1399] , English merchant ( |approximate | date ; d. )         
## [doc1422] sh printer ( d. c. ) |approximate | –                   
## [doc1428]  , German explorer ( |approximate | date )              
## [doc1430] d inquisitor ( d . ) |approximate | –                   
## [doc1435] music and composer ( |approximate | date ; d. )         
## [doc1435] lorentine sculptor ( |approximate | date ; d. ) January 
## [doc1435] lorentine sculptor ( |approximate | date ; d. ) Johannes
## [doc1445] French mathematician |approximate | –                   
## [doc1452]                  ) ( |approximate | date ) Diogo Cão , P
## [doc1452]                  ) ( |approximate | date ) February Švit
## [doc1455]  , German sculptor ( |approximate | date ) ( d. ) Estefa
## [doc1455]  , German sculptor ( |approximate | date ) ( d. ) Estefa
## [doc1467] n Battista Alberti ( |approximate | date ) .            
## [doc1472]                [ ] ( |approximate | date ) –            
## [doc1472]                [ ] ( |approximate | date ) –            
## [doc1475] anish conquistador ( |approximate | date ; d. ) Gendun G
## [doc1475] anish conquistador ( |approximate | date ; d. )         
## [doc1475]  Pope Alexander VI ( |approximate | date ; d .          
## [doc1485] , Italian explorer ( |approximate | date ; d. c. )      
## [doc1485] , Italian explorer ( |approximate | date ; d. c. ) proba
## [doc1487] ruvian Man drawing ( |approximate | date ) .            
## [doc1490] rom Yemen to Mecca ( |approximate | date ) .            
## [doc1502]  marshal of France ( |approximate | date ; d. ) Hurrem S
## [doc1504]  , Gregorian date is |approximate | ) .                 
## [doc1504]           December ( |approximate | date ) –            
## [doc1524]              March ( |approximate | date ) – da Verrazza
## [doc1540] sus visits Villach . |approximate | date –              
## [doc1550]                      |Approximate | date –              
## [doc1564]  German ruler ( d. ) |approximate | date – Xue Susu , Ch
## [doc1573]  Roman Empire ( d. ) |approximate | year June –         
## [doc1600]                      |Approximate | date –              
## [doc1604] hemist and chemist ( |approximate | date ; d. ) [ ]     
## [doc1618]  & c. in Amsterdam ( |approximate | date ) .            
## [doc1625]                      |Approximate | date – Shyaam a - Mb
## [doc1632] omat in Europe . [ ] |Approximate | date –              
## [doc1639] is , French courtier |Approximate | date –              
## [doc1660] sh politician ( b. ) |approximate | –                   
## [doc1676] ge , Massachusetts ( |approximate | date ) .            
## [doc1680] arian heroine ( d. ) |approximate | –                   
## [doc1686] nape ) leader ( d. ) |approximate | date –              
## [doc1700]                      |Approximate | date – Lions become 
## [doc1711]          September ( |approximate | date ) –            
## [doc1711]          September ( |approximate | date ) –            
## [doc1716] mathematician ( d. ) |approximate | date Arnarsaq , Inui
## [doc1755] of Devonshire ( b. ) |approximate | date Queen Nanny of 
## [doc1760]                      |approximate | date –              
## [doc1762]                      |Approximate | date of foundation o
## [doc1764] ian physician ( d. ) |Approximate | date – Alexander Mac
## [doc1772] litary leader ( d. ) |approximate | date Charlotte Dacre
## [doc1791] an , inventor ( d. ) |approximate | date – Enriqueta Fav
## [doc1793] h painter ( d. ) [ ] |Approximate | date – Sarah Booth ,
## [doc1797]  psychiatrist ( d. ) |approximate | date –              
## [doc1812]                      |Approximate | date –              
## [doc1840]                  [ ] |Approximate | date – Volcanic erup
## [doc1841]  to record names and |approximate | ages of every househ
## [doc1910]                      |Approximate | date of origin of Ma
## [doc1910]                      |Approximate | date of origin of Ma
## [doc1920]                      |Approximate | date –              
## [doc2000]            October – |Approximate | start of Autumn West
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "red") +
  labs(title = "Approximate", subtitles = "Number of Wikipedia Pages of Years That Mention Approximate For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "probable", n = 2000000000000) %>%
  substr(2,8)
## [doc0040] ed at Corinth ( most |probable| date ) .            
## [doc0049] me and at Philippi ( |probable| date according to ch
## [doc0057]  Epistle to Romans ( |probable| date ) .            
## [doc0536] Northern Zhou ( d. ) |probable| Evagrius Scholasticu
## [doc0550]                      |probable| Pope Boniface       
## [doc0550] ( magister militum ) |probable| Dubricius , British 
## [doc0554]  of Japan ( d. ) [ ] |probable| Wendelin of Trier , 
## [doc0554] Baekje ( Korea ) [ ] |probable| Liberius , Roman ari
## [doc0555] of Liang Dynasty [ ] |probable| Cybi Felyn , Cornish
## [doc0698]                      |Probable| date of Cuthbert 's 
## [doc0701] ss of Tang dynasty , |probable| forced suicide ( b. 
## [doc0701] ce of Tang dynasty , |probable| forced suicide ( b. 
## [doc0772] d philosopher ( d. ) |probable| Charles Younger , so
## [doc0774] f Asturias ( Spain ) |probable| Gummarus , Frankish 
## [doc0776] nasty ( d. ) [ ] [ ] |probable| Saint George Standar
## [doc0777] hop of Worcester [ ] |probable| Telerig , ruler ( kh
## [doc0783]                  The |probable| reason behind marria
## [doc0840] in ; January is most |probable| , is also possible .
## [doc0877] ngford Lough , and a |probable| interregnum follows 
## [doc0901] ople . [ ] Biagota , |probable| wife of duke Bolesla
## [doc0953] inger and chancellor |probable| Æthelgar , bishop of
## [doc0953] itan empress ( d . ) |probable| Ælfheah , archbishop
## [doc0956] ount of Stade ( d. ) |probable| Adalbert of Prague ,
## [doc0958] f Iberia ( Georgia ) |probable| Drogo , duke of Brit
## [doc0979]  , Hasanwayhid ruler |probable| –                   
## [doc0986] wynedd ( Wales ) [ ] |probable| Æthelstan Mannessune
## [doc1045]  and poet ( d. ) [ ] |Probable| Margaret , queen of 
## [doc1090] nicler ( b. c.1020 ) |probable| Osbern of Canterbury
## [doc1090] waka poet ( d. ) [ ] |probable| Agnes I , German abb
## [doc1177]  ( b. early ) [ ][ ] |probable| –                   
## [doc1200]  and poet ( d. ) [ ] |probable| Adam Marsh , English
## [doc1203] English nobleman [ ] |probable| Eudokia Komnene , By
## [doc1204]  , Sultan of Rûm [ ] |probable| – Amalric of Bena , 
## [doc1205] f Bohemia ( d. ) [ ] |probable| Azzo VII d' Este , I
## [doc1205]  [ citation needed ] |probable| –                   
## [doc1206]  [ citation needed ] |probable| Margaret de Quincy ,
## [doc1207]  , French and mystic |probable| Bona of Pisa , Itali
## [doc1232] staufen ) ( d. ) [ ] |probable| –                   
## [doc1235] omans ( d. ) [ ] [ ] |probable| Pope Boniface VIII (
## [doc1235] ic Society . [ ] [ ] |Probable| date –              
## [doc1247] nd writer ( b. ) [ ] |probable| –                   
## [doc1260] d scholar ( b. ) [ ] |probable| –                   
## [doc1296]  nobleman ( d. ) [ ] |probable| Algirdas , ruler of 
## [doc1309]  [ citation needed ] |probable| –                   
## [doc1309] izier ( b. ) April ( |probable| ) –                 
## [doc1311] ing of Lan Na ( b. ) |probable| –                   
## [doc1324] perial prince ( d. ) |probable| –                   
## [doc1325] n condottiero ( d. ) |probable| –                   
## [doc1326] dic authority ( d. ) |probable| Manuel Kantakouzenos
## [doc1327] Anglo - Irish knight |probable| –                   
## [doc1327] alian jurist ( d . ) |probable| –                   
## [doc1331] s , Byzantine prince |probable| –                   
## [doc1336] tan of Kiev ( died ) |probable| Stefan Uroš V , Empe
## [doc1338] i , Japanese samurai |probable| –                   
## [doc1340]                    ) |probable| Margaret Drummond , 
## [doc1341] riarch of Negroponte |probable| –                   
## [doc1342] e Ros , Baron de Ros |probable| –                   
## [doc1343] ish ruler ( d. ) [ ] |probable| Geoffrey Chaucer , E
## [doc1344]                      |probable| –                   
## [doc1349] nd geographer ( b. ) |probable| –                   
## [doc1350] consort of Majapahit |probable| Juan Ruiz , Archprie
## [doc1351] oan of France ( d. ) |probable| –                   
## [doc1355] ess of Ulster ( d. ) |probable| Acamapichtli , tlato
## [doc1359]                      |probable| date – Battle of Meg
## [doc1359] nish cardinal ( d. ) |probable| –                   
## [doc1362] ty ) of China ( d. ) |probable| –                   
## [doc1363] or of England ( d. ) |probable| –                   
## [doc1363] ilosopher ( b. ) [ ] |probable| –                   
## [doc1367] sh politician ( d. ) |probable| –                   
## [doc1368] of France ( d. ) [ ] |probable| Louis VII , Duke of 
## [doc1368] sopher ( b. c.1300 ) |probable| –                   
## [doc1369] er of England ( d. ) |probable| –                   
## [doc1370] ish scientist ( d. ) |probable| Joan of Navarre , Qu
## [doc1370] dynasty China ( b. ) |probable| date –              
## [doc1371]  and explorer ( d. ) |probable| –                   
## [doc1374]  grand prince ( d. ) |probable| Queen Jadwiga of Pol
## [doc1380] ussite priest ( d. ) |probable| Huitzilihuitl II , T
## [doc1382] I of Ethiopia ( d. ) |probable| –                   
## [doc1384] r , King of Connacht |probable| –                   
## [doc1386] ian mercenary ( d. ) |probable| –                   
## [doc1386] nese nobleman ( b. ) |probable| –                   
## [doc1390] nate polymath ( b. ) |probable| –                   
## [doc1390] zilihuitl ( d. ) [ ] |probable| John Dunstaple , Eng
## [doc1394] f Suffolk ( d. ) [ ] |probable| –                   
## [doc1400] ourtier ( d. after ) |probable| Marina Nani , Veneti
## [doc1401] ss of Hainaut ( d. ) |probable| –                   
## [doc1403]                      |probable| –                   
## [doc1403] bleman ( in battle ) |probable| date –              
## [doc1405] tional hero ( d. ) ( |probable| date ) October – Pop
## [doc1405]  Scotland ( b. ) [ ] |probable| –                   
## [doc1406]                    ) |probable| date –              
## [doc1406] ount of Celje ( d. ) |probable| date Iancu de Hunedo
## [doc1409] rke , English bishop |probable| –                   
## [doc1410]  of Caithness ( d. ) |probable| Johannes Ockeghem , 
## [doc1411] f Transoxiana ( b. ) |probable| –                   
## [doc1414] f Isle of Man ( b. ) |probable| –                   
## [doc1414] Buddhist monk ( d. ) |probable| –                   
## [doc1416]                      |probable| Owain Glyndwr ,     
## [doc1416] r of Florence ( d. ) |probable| –                   
## [doc1417] der ( executed ) [ ] |probable| –                   
## [doc1422] of France ( b. ) [ ] |probable| –                   
## [doc1422] r in Khurasan ( d. ) |probable| –                   
## [doc1424] s of Auvergne ( b. ) |probable| –                   
## [doc1427] nese novelist ( b. ) |probable| Jehuda Cresques , Ca
## [doc1428] ribe and illuminator |probable| –                   
## [doc1428] nch sovereign ( b. ) |probable| –                   
## [doc1429] e of Portugal ( d. ) |probable| –                   
## [doc1430] Catalan noble ( d. ) |probable| –                   
## [doc1431] n and warrior ( d. ) |probable| William Hastings , B
## [doc1432] Innocent VIII ( d. ) |probable| –                   
## [doc1433] l scholar ( d. ) [ ] |probable| –                   
## [doc1434] alian admiral ( d. ) |probable| Isabella of Bourbon 
## [doc1435] of Derby ( d . ) [ ] |probable| Johannes Tinctoris ,
## [doc1436]                  The |probable| first meeting of Rik
## [doc1437] sh statesman ( d . ) |probable| –                   
## [doc1438] ler of Herat ( d . ) |probable| –                   
## [doc1443] rbian duchess ( b. ) |probable| –                   
## [doc1443] Julius II ( d. ) [ ] |probable| Piero del Pollaiuolo
## [doc1445] sh astronomer ( d. ) |probable| –                   
## [doc1446] h politician ( d . ) |probable| Alexander Agricola ,
## [doc1447] tholic mystic ( d. ) |probable| Giovanni Antonio Ama
## [doc1449]  Brandenburg ( d . ) |probable| Ilham Ghali khan of 
## [doc1450] lish explorer ( d. ) |probable| Kamal ud - Din Behza
## [doc1452] ose , English bishop |probable| –                   
## [doc1453] ish composer ( d . ) |probable| –                   
## [doc1457] ke of Bedford ( d. ) |probable| Sebastian Brant , Ge
## [doc1458] lian poet ( d. ) [ ] |probable| Thomas Docwra , Gran
## [doc1459]                    ) |probable| –                   
## [doc1460] lish nobleman ( d. ) |probable| Antoine Brumel , Fle
## [doc1461] ke of Norfolk ( b. ) |probable| –                   
## [doc1462] emish printer ( d. ) |probable| –                   
## [doc1465]  conquistador ( d. ) |probable| Gil Vicente , Portug
## [doc1466]                      |Probable| – Moctezuma II , Azt
## [doc1467]                    ) |probable| –                   
## [doc1468] hop of Mexico ( d. ) |probable| –                   
## [doc1469]  and feminist ( d. ) |probable| –                   
## [doc1470] lic clergyman ( b. ) |probable| –                   
## [doc1470] ish historian ( d. ) |probable| Matthias Grünewald ,
## [doc1472]  , Russian traveller |probable| Thomas Boyd , Earl o
## [doc1473] l philosopher ( b. ) |probable| –                   
## [doc1473]  dogaressa ( b. c. ) |probable| –                   
## [doc1473] or politician ( d. ) |probable| Jean Lemaire de Belg
## [doc1474] sh highwayman ( d. ) |probable| Sebastian Cabot , Ve
## [doc1474]  , Dalai Lama ( b. ) |probable| Walter Frye , Englis
## [doc1475]  , Dalai Lama ( d. ) |probable| Thomas West , Baron 
## [doc1477] rian nobleman ( d. ) |probable| Giorgione , painter 
## [doc1478] ereign abbess ( d. ) |probable| Thomas Ashwell , Eng
## [doc1479] t of Hinduism ( d. ) |probable| –                   
## [doc1480] alian painter ( d. ) |probable| Arasibo , Taino Caci
## [doc1482]            January – |Probable| first printing of To
## [doc1482] humanist poet ( d. ) |probable| Bernardino Luini , I
## [doc1485] imate date ; d. c. ) |probable| Hugh Aston , English
## [doc1486] Lan Xang king ( b. ) |probable| –                   
## [doc1486] rdi kabbalist ( d. ) |probable| Colin Campbell , Ear
## [doc1488] an noblewoman ( d. ) |probable| Thomas Audley , Baro
## [doc1489] ese swordsman ( d. ) |probable| Juan de Grijalva , S
## [doc1490] st and mystic ( d. ) |probable| Wijerd Jelckama , Fr
## [doc1491]  , knight of Granada |probable| February ( according
## [doc1491] nish scholar ( d . ) |probable| George Blaurock , Sw
## [doc1492] and zoologist ( d. ) |probable| Thomas Manners , Ear
## [doc1493] nese general ( d . ) |probable| Jean du Bellay , Fre
## [doc1494] ny ( d. ) November ( |probable| ) –                 
## [doc1495] Baron Wharton ( d. ) |probable| Pedro de Alvarado , 
## [doc1496] ian artist ( b. c. ) |probable| –                   
## [doc1496] oser and poet ( d. ) |probable| –                   
## [doc1497] zzo ( b. 1420/1430 ) |probable| –                   
## [doc1497] rman preacher ( d. ) |probable| Francesco Berni , It
## [doc1498] n sculptor ( b. c. ) |probable| –                   
## [doc1498]                      |Probable| date at which Leonar
## [doc1499] ndic clam ( d. ) [ ] |probable| –                   
## [doc1500] nd historian ( d . ) |probable| Johannes Aal , Swiss
## [doc1501] nese nobleman ( d. ) |probable| Nicholas Heath , arc
## [doc1501] ia - Landshut ( b. ) |probable| –                   
## [doc1502] der and saint ( d. ) |probable| Elizabeth Blount , E
## [doc1503] Brazil ( d.1573 or ) |probable| –                   
## [doc1505] hali , Khan of Qasim |probable| Christopher Tye , En
## [doc1506] nese samurai ( d . ) |probable| Elizabeth Barton , E
## [doc1507] ish statesman ( d. ) |probable| Jacques Arcadelt , F
## [doc1510]  conquistador ( d. ) |probable| Tullia d'Aragona , I
## [doc1511] f Adil Shahi Dynasty |probable| –                   
## [doc1513]                    ) |probable| –                   
## [doc1515] tholic bishop ( d. ) |probable| Leonard Digges , Eng
## [doc1515]  conquistador ( b. ) |probable| –                   
## [doc1516]                      |probable| James Hamilton , Duk
## [doc1517] d philosopher ( b. ) |probable| Gaspar van Weerbeke 
## [doc1519] lish nobleman ( d. ) |probable| Thomas Gresham , Eng
## [doc1520] athematician ( d . ) |probable| Hans Eworth , Flemis
## [doc1520]  court singer ( b. ) |probable| –                   
## [doc1522] al expert ( d. ) [ ] |probable| Emperor Gelawdewos o
## [doc1523]  Italian poet ( d. ) |probable| –                   
## [doc1525]  weaver and reformer |probable| Jean Lemaire de Belg
## [doc1525]  Baron Dudley ( d. ) |probable| Pieter Bruegel Elder
## [doc1526] anese warlord ( d. ) |probable| Taqi ad - Din Muhamm
## [doc1527]  and organist ( d. ) |probable| John Dudley , Earl o
## [doc1527] nuscript illuminator |probable| –                   
## [doc1528] an and author ( d. ) |probable| Ambrose Dudley , Ear
## [doc1529] ian historian ( b. ) |probable| –                   
## [doc1530] ian Tsaritsa ( d . ) |probable| Moses Isserles , Pol
## [doc1531] est of Mexico ( b. ) |probable| Fernan Perez de Oliv
## [doc1532] olic cardinal ( d. ) |probable| Sofonisba Anguissola
## [doc1532] English politician ( |probable| ; [ ] d. ) William I
## [doc1533] Marathi saint ( d. ) |probable| Amina , Queen of Zaz
## [doc1533]  sailor and mutineer |probable| –                   
## [doc1537] d Bishop of Carlisle |probable| –                   
## [doc1540] a , Spanish explorer |probable| Tristão da Cunha , P
## [doc1540] i and warlord ( d. ) |probable| William Byrd , Engli
## [doc1543] ttoman prince ( b. ) |probable| Sebastian Franck , G
## [doc1543]                    ) |probable| Giovanni Maria Nanin
## [doc1544] st and singer ( d. ) |probable| George Whetstone , E
## [doc1545] anese warlord ( d. ) |probable| –                   
## [doc1546] lish magnate ( d . ) |probable| –                   
## [doc1548] nish composer ( d. ) |probable| Francesco Andreini ,
## [doc1550] , Irish rebel ( d. ) |probable| Robert Balfour , Sco
## [doc1550]               July ( |probable| date ) –            
## [doc1551] rthodox Saint ( d. ) |probable| Patrick Galloway , M
## [doc1552] Croatian poet ( d. ) |probable| Miguel de Benavides 
## [doc1556]  Turkish poet ( b. ) |probable| Brian mac Cathaoir O
## [doc1557] , English lawyer [ ] |probable| Sebastian Cabot , It
## [doc1557] anese general ( d. ) |probable| –                   
## [doc1558] ench war hero ( d. ) |probable| - Pierre Dugua , Sie
## [doc1560] ple to Netherlands ( |probable| date ) .            
## [doc1560] German pastor ( d. ) |probable| Jan Karol Chodkiewic
## [doc1561] apanese noble ( b. ) |probable| –                   
## [doc1564] nnell , Irish leader |probable| –                   
## [doc1564] vateer ( d. c.1634 ) |probable| Henry Chettle , Engl
## [doc1566] ll , Irish chieftain |probable| - Jacob Acontius , S
## [doc1572] lish nobleman ( b. ) |probable| –                   
## [doc1572] elsh composer ( d. ) |probable| –                   
## [doc1575] of Tyrconnell ( d. ) |probable| Vittoria Aleotti , I
## [doc1576]  and sculptor ( d. ) |probable| –                   
## [doc1576] an and writer ( b. ) |probable| Anthony More , Dutch
## [doc1579] ian king of Lan Xang |probable| - Hans Staden , Germ
## [doc1580] and colonizer ( d. ) |probable| William Brabazon , E
## [doc1581]             Summer ( |probable| ) –                 
## [doc1581] alkha Mongols ( d. ) |probable| Juan Ruiz de Alarcón
## [doc1582]  and diplomat ( d. ) |probable| –                   
## [doc1583] anist scholar ( d. ) |probable| Alexander Henderson 
## [doc1586] opher ( d. ) [ ] [ ] |probable| Giles Fletcher , Eng
## [doc1587] lish nobleman ( b. ) |probable| –                   
## [doc1595]                      |Probable| first performance of
## [doc1595]                      |Probable| first performance of
## [doc1596] kugawa Ieyasu ( b. ) |probable| –                   
## [doc1597]                      |Probable| first performance of
## [doc1598] sh abductions ( d. ) |probable| Jean - Armand du Pey
## [doc1616]               Latest |probable| date of Thomas Middl
## [doc1620]             August ( |probable| date ; August OS ) –
## [doc1620] s pathologist ( d. ) |probable| –                   
## [doc1623]               July ( |probable| date ) –            
## [doc1629] etian painter ( b. ) |probable| –                   
## [doc1635]                    ) |probable| –                   
## [doc1638] - - Moor , England : |probable| ball lightning strik
## [doc1640] t ( d . ) December ( |probable| date ) –            
## [doc1654] Ferdinand III ( d. ) |probable| –                   
## [doc1667] glish actress ( d. ) |probable| –                   
## [doc1669] olish magnate ( d. ) |probable| –                   
## [doc1691] d regent of Maldives |probable| –                   
## [doc1692] ,300 injured , and a |probable| additional 2,000 die
## [doc1707] d philosopher ( d. ) |probable| William Hoare , Engl
## [doc1709] r of Maryland ( d. ) |probable| date – Eleanor Glanv
## [doc1722] ttish heroine ( d. ) |probable| –                   
## [doc1725]  English poet ( b. ) |probable| Leendert Hasenbosch 
## [doc1743]                      |Probable| date –              
## [doc1760] liote heroine ( d. ) |probable| date – Lemuel Franci
## [doc1769] nese merchant ( d. ) |probable| John Henry Colclough
## [doc1775]                      |Probable| date – Jeanne Baret 
## [doc1786] an epigrapher ( d. ) |probable| –                   
## [doc1813]                      |Probable| date – George E. Cly
## [doc1840] eral ( d. ) earliest |probable| date –              
## [doc1844] ian Barrister ( d. ) |probable| –                   
## [doc1868]  film actress ( d. ) |probable| –                   
## [doc1872] November ( 07:35 ) ( |probable| date ) –            
## [doc1910] lar of London home ( |probable| date ) .            
## [doc1910] lar of London home ( |probable| date ) .            
## [doc1930] ependence activist ( |probable| ; d. ) [ ] August Ro
## [doc1962] s officially ruled a |probable| suicide ( exact caus
## [doc1962] s officially ruled a |probable| suicide ( exact caus
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "yellow") +
  labs(title = "Probable", subtitles = "Number of Wikipedia Pages of Years That Mention Probable For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "chancellor", n = 2000000000000) %>%
  substr(2,8)
## [doc0110] Chinese official and |chancellor| ( d. ) Duan Xi , Chi
## [doc0129] , Chinese official , |chancellor| ( d. ) Galen , Greek
## [doc0163]  Changxu ) , Chinese |chancellor| ( d. ) Tiberius Clau
## [doc0168]  ) Gu Yong , Chinese |chancellor| ( d. ) Li Tong , Chi
## [doc0181] huge Liang , Chinese |chancellor| and regent ( d. ) Ae
## [doc0219] ficial , adviser and |chancellor| ( b.                
## [doc0225] Chinese official and |chancellor| ( b. ) Xiahou Shang 
## [doc0236] Chinese official and |chancellor| ( d. ) Zhou Chu , Ch
## [doc0250]  Chinese general and |chancellor| ( b. )              
## [doc0264] Chinese official and |chancellor| Zong Yu ( or Deyan )
## [doc0272]         Yu , Chinese |chancellor| and politician      
## [doc0280] r Juxian ) , Chinese |chancellor|
## [doc0318] Chinese official and |chancellor| Liu Can ( or Shiguan
## [doc0568]          Feng Deyi , |chancellor| of Tang Dynasty ( d.
## [doc0570] mate date ) Pei Ji , |chancellor| of Tang Dynasty ( d.
## [doc0571] i Jing , general and |chancellor| of Tang dynasty ( d.
## [doc0575] e date ) Wen Yanbo , |chancellor| of Tang Dynasty ( d.
## [doc0576] date ) Gao Shilian , |chancellor| of Tang Dynasty ( d.
## [doc0579]      Fang Xuanling , |chancellor| of Tang Dynasty ( d.
## [doc0580] e date ) Wei Zheng , |chancellor| of Tang dynasty ( d.
## [doc0585]           Du Ruhui , |chancellor| of Tang Dynasty ( d.
## [doc0587]    Zhang Xingcheng , |chancellor| of Tang Dynasty ( d.
## [doc0588]  date ) Yu Zhining , |chancellor| of Tang dynasty ( d.
## [doc0592] ( d. ) Xu Jingzong , |chancellor| of Tang Dynasty ( d.
## [doc0594]  Shiji , general and |chancellor| of Tang Dynasty ( d.
## [doc0595]  ( d. ) Cen Wenben , |chancellor| and editor of Book o
## [doc0596] nk ( d. ) Gao Jifu , |chancellor| of Tang Dynasty ( d.
## [doc0597]       Chu Suiliang , |chancellor| of Tang dynasty ( d.
## [doc0601] sty ( d. ) Ma Zhou , |chancellor| of Tang Dynasty ( d.
## [doc0606]  Muhammad Han Yuan , |chancellor| of Tang Dynasty ( d.
## [doc0614] ate date ) Li Yifu , |chancellor| of Tang dynasty ( d.
## [doc0618] ror of Qin Dou Wei , |chancellor| of Tang dynasty Fíng
## [doc0619] ( b. ) Liu Wenjing , |chancellor| of Tang dynasty ( b.
## [doc0627]          Feng Deyi , |chancellor| of Tang dynasty ( b.
## [doc0628]  father and Du Yan , |chancellor| of Tang dynasty Kava
## [doc0629] n Abi Talib Pei Ji , |chancellor| of Tang dynasty ( b.
## [doc0630] e date ) Di Renjie , |chancellor| of Tang Dynasty ( d.
## [doc0630] an Empire Du Ruhui , |chancellor| of Tang Dynasty ( b.
## [doc0633] te date ) Dai Zhou , |chancellor| of Tang Dynasty outp
## [doc0635] n Shuda , prince and |chancellor| of Tang Dynasty Gart
## [doc0637]          Wen Yanbo , |chancellor| of Tang Dynasty ( b.
## [doc0639]           Wang Gui , |chancellor| of Tang dynasty ( b.
## [doc0642]        Yuwen Shiji , |chancellor| of Tang dynasty Bede
## [doc0643]          Hou Junji , |chancellor| of Tang Dynasty Sept
## [doc0644] f Palenque Li Jiao , |chancellor| of Tang Dynasty ( d.
## [doc0645]         Cen Wenben , |chancellor| and editor of Book o
## [doc0645]         Cen Wenben , |chancellor| and editor of Book o
## [doc0646]   January – Liu Ji , |chancellor| of Tang Dynasty unkn
## [doc0647]        Gao Shilian , |chancellor| of Tang Dynasty ( b.
## [doc0647]        Yang Shidao , |chancellor| of Tang Dynasty     
## [doc0648]   It chief editor is |chancellor| Fang Xuanling , who 
## [doc0648]        [ ] Ma Zhou , |chancellor| of Tang dynasty ( b.
## [doc0648]      Fang Xuanling , |chancellor| of Tang dynasty ( b.
## [doc0649]  Chinese general and |chancellor| of Tang dynasty ( b.
## [doc0649]  Chinese general and |chancellor| of Tang dynasty ( d.
## [doc0650]          Yao Chong , |chancellor| of Tang Dynasty ( d.
## [doc0653]    Zhang Xingcheng , |chancellor| of Tang Dynasty ( b.
## [doc0654] January – Gao Jifu , |chancellor| of Tang Dynasty ( b.
## [doc0656] s kidnapped by court |chancellor| , Grimoald Elder , w
## [doc0658] ( or ) Du Zhenglun , |chancellor| of Tang Dynasty Erch
## [doc0658] eland Chu Suiliang , |chancellor| of Tang Dynasty ( b.
## [doc0659]           Han Yuan , |chancellor| of Tang dynasty ( b.
## [doc0659] ch of East Liu Shi , |chancellor| of Tang dynasty Zhan
## [doc0660] ate ) Xin Maojiang , |chancellor| of Tang Dynasty outp
## [doc0663] t ( d. ) Song Jing , |chancellor| of Tang Dynasty ( d.
## [doc0665]         Yu Zhining , |chancellor| of Tang Dynasty ( b.
## [doc0669]  Shiji , general and |chancellor| of Tang Dynasty ( b.
## [doc0672] igoths Xu Jingzong , |chancellor| of Tang Dynasty ( b.
## [doc0673]      Zhang Jiuling , |chancellor| of Tang Dynasty ( d.
## [doc0675]  date ) Niu Xianke , |chancellor| of Tang dynasty ( d.
## [doc0676] ustrasia Le Yanwei , |chancellor| of Tang Dynasty Mang
## [doc0678] iuli Zhang Wenguan , |chancellor| of Tang dynasty ( b.
## [doc0679]  scholar Dai Zhide , |chancellor| of Tang Dynasty Sige
## [doc0681] ( d. ) Pei Yaoqing , |chancellor| of Tang Dynasty ( d.
## [doc0682]        Li Jingxuan , |chancellor| of Tang Dynasty ( b.
## [doc0684]            Pei Yan , |chancellor| of Tang Dynasty Phil
## [doc0685] of Kent Liu Rengui , |chancellor| of Tang Dynasty ( b.
## [doc0685]  d. ) Miao Jinqing , |chancellor| of Tang Dynasty ( d.
## [doc0687]  ( d. ) Wei Jiansu , |chancellor| of Tang dynasty ( d.
## [doc0697]          Fang Guan , |chancellor| of Tang Dynasty ( d.
## [doc0705] tat organized by her |chancellor| Zhang Jianzhi , afte
## [doc0709] ( d. ) Du Hongjian , |chancellor| of Tang Dynasty ( d.
## [doc0713]            Li Jiao , |chancellor| of Tang Dynasty ( b.
## [doc0714]          Ne de facto |chancellor| and commissions him 
## [doc0719]            Guan Bo , |chancellor| of Tang Dynasty ( d.
## [doc0721] n Empire Yao Chong , |chancellor| of Tang Dynasty ( b.
## [doc0727] al ( d. ) Yang Yan , |chancellor| of Tang Dynasty ( d.
## [doc0728] d. ) Du Huangchang , |chancellor| of Tang Dynasty ( or
## [doc0729]      Du Huangchang , |chancellor| of Tang Dynasty ( or
## [doc0730] usurper Yuwen Rong , |chancellor| of Tang Dynasty ( or
## [doc0730]          Zhang Yue , |chancellor| of Tang Dynasty ( b.
## [doc0731] eustria Yuwen Rong , |chancellor| of Tang Dynasty ( or
## [doc0731] eustria Yuwen Rong , |chancellor| of Tang Dynasty ( or
## [doc0733]        Li Yuanhong , |chancellor| of Tang Dynasty Mild
## [doc0735]                You , |chancellor| of Tang Dynasty ( d.
## [doc0739]             Lu Mai , |chancellor| of Tang Dynasty ( d.
## [doc0740]      Zhang Jiuling , |chancellor| of Tang Dynasty ( b.
## [doc0740] te date ) Gao Ying , |chancellor| of Tang Dynasty ( d.
## [doc0742] ( d . ) Liu Congyi , |chancellor| of Tang Dynasty ( d.
## [doc0742]         Chrodegang , |chancellor| of Charles Martel , 
## [doc0742]  date ) Niu Xianke , |chancellor| of Tang Dynasty ( b.
## [doc0743] vernor Pei Yaoqing , |chancellor| of Tang dynasty ( b.
## [doc0746] ( d. ) Zhao Zongru , |chancellor| of Tang Dynasty ( d.
## [doc0747] sh abbot Li Shizhi , |chancellor| and poet of Tang Dyn
## [doc0752]          Zheng Yin , |chancellor| of Tang dynasty ( d.
## [doc0753]           Li Linfu , |chancellor| of Tang Dynasty Seva
## [doc0754] ia ( b. ) Li Linfu , |chancellor| of Tang dynasty Rhod
## [doc0754] ange ( d. ) Li Fan , |chancellor| of Tang dynasty ( d.
## [doc0756]      Yang Guozhong , |chancellor| of Tang Dynasty     
## [doc0756] r ( d. ) Li Yijian , |chancellor| of Tang Dynasty ( d.
## [doc0756] ountain passes , but |chancellor| Yang Guozhong gives 
## [doc0758] ( d. ) Wu Yuanheng , |chancellor| of Tang Dynasty ( d.
## [doc0758] ) ( d. ) Li Fengji , |chancellor| of Tang Dynasty ( d.
## [doc0758]         Chen Xilie , |chancellor| of Tang Dynasty Swit
## [doc0759] e ( d. ) Quan Deyu , |chancellor| of Tang Dynasty ( d.
## [doc0760] ei Guanzhi , Chinese |chancellor| ( d. ) Zhang Hongjin
## [doc0763] ) state Wei Jiansu , |chancellor| of Tang Dynasty ( b.
## [doc0763] of Picts Fang Guan , |chancellor| of Tang Dynasty ( b.
## [doc0764] an ( d. ) Li Jiang , |chancellor| of Tang Dynasty ( d.
## [doc0765]       Miao Jinqing , |chancellor| of Tang Dynasty ( b.
## [doc0765] asty ( d. ) Pei Du , |chancellor| of Tang Dynasty ( d.
## [doc0766]           Li Cheng , |chancellor| of Tang Dynasty Zhan
## [doc0769] January – Cui Huan , |chancellor| of Tang Dynasty Marc
## [doc0769]        Du Yuanying , |chancellor| of Tang Dynasty ( d.
## [doc0772]            Cui Qun , |chancellor| of Tang Dynasty ( d.
## [doc0773]      Duan Wenchang , |chancellor| of Tang Dynasty ( d.
## [doc0773]  ( d. ) Wei Chuhou , |chancellor| of Tang Dynasty ( d.
## [doc0776]             Lu Sui , |chancellor| of Tang Dynasty ( d.
## [doc0781] an ( b. ) Yang Yan , |chancellor| of Tang Dynasty ( b.
## [doc0784]             Li Jue , |chancellor| of Tang Dynasty ( ap
## [doc0785]         Liu Congyi , |chancellor| of Tang Dynasty ( b.
## [doc0787] ate date ) Li Deyu , |chancellor| of Tang Dynasty ( d.
## [doc0789]           Lu Shang , |chancellor| of Tang Dynasty ( d.
## [doc0791] cco ( d. ) Pei Xiu , |chancellor| of Tang Dynasty ( d 
## [doc0792]  d. ) Bai Minzhong , |chancellor| of Tang Dynasty ( d.
## [doc0793] mate date ) Wei Mo , |chancellor| of Tang Dynasty ( d.
## [doc0794] man ( or ) Du Cong , |chancellor| of Tang Dynasty May 
## [doc0796]  scholar Liu Zhuan , |chancellor| of Tang Dynasty ( d.
## [doc0797] outh Brega Guan Bo , |chancellor| of Tang Dynasty ( b.
## [doc0798]             Lu Mai , |chancellor| of Tang Dynasty ( b.
## [doc0799]         Jiang Shen , |chancellor| of Tang Dynasty ( d.
## [doc0802]            Bi Xian , |chancellor| of Tang Dynasty ( d.
## [doc0807] Li Jifu is appointed |chancellor| , during reign of Em
## [doc0808] es ) Du Huangchang , |chancellor| of Tang Dynasty Eanb
## [doc0811]    July – Gao Ying , |chancellor| of Tang Dynasty ( b.
## [doc0811]             Pei Ji , |chancellor| of Tang Dynasty Pepi
## [doc0811] Charlemagne Li Fan , |chancellor| of Tang Dynasty ( b.
## [doc0812] ine scholar Du You , |chancellor| of Tang Dynasty ( b.
## [doc0814] ate date ) Li Jifu , |chancellor| of Tang Dynasty ( b.
## [doc0815] July – Wu Yuanheng , |chancellor| of Tang Dynasty ( b.
## [doc0815] u Yuanheng , Chinese |chancellor| of Tang Dynasty , is
## [doc0818] k ( or ) Quan Deyu , |chancellor| of Tang Dynasty ( b.
## [doc0819]           Cheng Yi , |chancellor| of Tang Dynasty Hish
## [doc0820] eptember , Li Yong , |chancellor| of Tang Dynasty Dece
## [doc0820]         Huangfu Bo , |chancellor| of Tang Dynasty Lupo
## [doc0821]        Wei Guanzhi , |chancellor| of Tang dynasty ( b.
## [doc0821]       Zheng Yuqing , |chancellor| of Tang dynasty ( b.
## [doc0822] l leader Li Yijian , |chancellor| of Tang Dynasty ( b.
## [doc0824] g Hongjing , Chinese |chancellor| ( b. )              
## [doc0829] mate date ) Lu Yan , |chancellor| of Tang Dynasty ( d.
## [doc0829] overnor Wei Chuhou , |chancellor| of Tang Dynasty ( b.
## [doc0829] Uí Failghe Cui Zhi , |chancellor| of Tang Dynasty ( b.
## [doc0830] ndisfarne Li Jiang , |chancellor| of Tang Dynasty ( b.
## [doc0832]            Cui Qun , |chancellor| of Tang Dynasty ( b.
## [doc0833]          Dou Yizhi , |chancellor| of Tang Dynasty Du Y
## [doc0835] eman Duan Wenchang , |chancellor| of Tang Dynasty ( b.
## [doc0835]        Li Zhongyan , |chancellor| of Tang Dynasty Lu S
## [doc0835] ailure of emperor 's |chancellor| Li Zhongyan to subdu
## [doc0835] Chinese official and |chancellor| Vladislav , duke of 
## [doc0839] d. ) Liu Chongwang , |chancellor| of Tang Dynasty ( d.
## [doc0839] ng of Ulaid Pei Du , |chancellor| of Tang Dynasty ( b.
## [doc0841] date ) Du Rangneng , |chancellor| of Tang Dynasty ( d.
## [doc0842]           Li Cheng , |chancellor| of Tang Dynasty Liu 
## [doc0842]  March – Xiao Mian , |chancellor| of Tang Dynasty Augu
## [doc0844] imania Chen Yixing , |chancellor| of Tang Dynasty Ekke
## [doc0846]     July – Li Shen , |chancellor| of Tang Dynasty Bai 
## [doc0846]  ( b. ) Li Zongmin , |chancellor| of Tang Dynasty Mojm
## [doc0847] nasty ( d. ) Lu Yi , |chancellor| of Tang Dynasty ( d.
## [doc0847] d vizier Li Rangyi , |chancellor| of Tang Dynasty Theo
## [doc0848] ( or ) Cui Yuanshi , |chancellor| of Tang Dynasty Dres
## [doc0850] rtyr July – Wei Fu , |chancellor| of Tang Dynasty Amal
## [doc0851] te date ) Zhou Chi , |chancellor| of Tang Dynasty ( b.
## [doc0852] and prefect Li Jue , |chancellor| of Tang Dynasty Pres
## [doc0854] lwg ( d. ) Cui Yin , |chancellor| of Tang Dynasty ( d.
## [doc0857] ( Ireland ) Ma Zhi , |chancellor| of Tang Dynasty Muns
## [doc0857]  jurist Zheng Lang , |chancellor| of Tang Dynasty Ziry
## [doc0858] and poet Liu Zhuan , |chancellor| of Tang Dynasty ( b.
## [doc0858] rch of East Wei Mo , |chancellor| of Tang Dynasty ( b.
## [doc0859] te date ) Lu Shang , |chancellor| of Tang Dynasty ( b.
## [doc0861] ate ) Bai Minzhong , |chancellor| of Tang Dynasty ( b.
## [doc0862] ) ( d. ) Xiao Qing , |chancellor| of Later Liang ( d. 
## [doc0863]          Shen Song , |chancellor| of Wuyue ( d. ) Wang
## [doc0864] h nobleman Bi Xian , |chancellor| of Tang Dynasty ( b.
## [doc0864]            Pei Xiu , |chancellor| of Tang Dynasty ( b.
## [doc0865] ddhist monk Gao Qu , |chancellor| of Tang Dynasty Kass
## [doc0865] rchbishop Xiao Zhi , |chancellor| of Tang Dynasty Yahy
## [doc0866]             Yao Yi , |chancellor| of Later Tang ( d. )
## [doc0868]  Chinese officer and |chancellor| ( d. )              
## [doc0868] of Trier Yang Shou , |chancellor| of Tang Dynasty Yu X
## [doc0870] ng Dingbao , Chinese |chancellor| ( d. ) Zhu Yanshou ,
## [doc0871] imate date ) Li Qi , |chancellor| of Later Liang ( d. 
## [doc0873] bleman Wei Baoheng , |chancellor| of Tang Dynasty     
## [doc0873] d polymath Du Cong , |chancellor| of Tang Dynasty ( b.
## [doc0874] ty ( b. ) Liu Zhan , |chancellor| of Tang Dynasty Lu Y
## [doc0875]  scholar Xiao Fang , |chancellor| of Tang Dynasty ( b.
## [doc0876] ) Lu Wenji , Chinese |chancellor| ( d. ) Toda , queen 
## [doc0877] Pi Guangye , Chinese |chancellor| ( d. ) Rudesind I , 
## [doc0879] nt of Capua Li Wei , |chancellor| of Tang Dynasty Ruri
## [doc0881] of Dublin Cui Hang , |chancellor| of Tang Dynasty Davi
## [doc0881] mate date ) Liu Ye , |chancellor| of Tang Dynasty Lu G
## [doc0882] hui , Chinese Khitan |chancellor| ( d. ) Saadia Gaon ,
## [doc0882] , Chinese prince and |chancellor| ( d. )              
## [doc0882] ongda , official and |chancellor| of Wuyue ( d. )     
## [doc0883]       Zhao Jiliang , |chancellor| of Later Shu ( d. ) 
## [doc0884] te date ) Wang Duo , |chancellor| of Tang Dynasty Zhou
## [doc0884] iwara no Mototsune , |chancellor| ( kampaku ) of Japan
## [doc0884] Chinese official and |chancellor| ( d. ) January – Has
## [doc0885]  Zhao Ying , Chinese |chancellor| ( d. ) April – Metho
## [doc0887]      Zheng Changtu , |chancellor| of Tang Dynasty Zhu 
## [doc0887] an April – Pei Che , |chancellor| of Tang Dynasty July
## [doc0887] n Korea ) Xiao Gou , |chancellor| of Tang Dynasty Yant
## [doc0888] iang ( d. ) Liu Xu , |chancellor| of Later Tang and La
## [doc0891] of Serbia Wang Hui , |chancellor| of Tang Dynasty outp
## [doc0891] Chinese official and |chancellor| ( d. ) Yuan Dezhao ,
## [doc0892] Chinese official and |chancellor| ( d. )              
## [doc0892]  Chinese warlord and |chancellor| Kirschbaum , Stanisl
## [doc0893] u Rangneng , Chinese |chancellor| ( b. )              
## [doc0893] inese politician and |chancellor| ( d. ) April – Chen 
## [doc0893] Chinese official and |chancellor| ( approximate date )
## [doc0895] Chinese official and |chancellor| ( d. ) May – Qian Ku
## [doc0895]  date ) Wei Zhaodu , |chancellor| of Tang Dynasty Wulf
## [doc0895]              Li Xi , |chancellor| of Tang Dynasty Augu
## [doc0895]  date ) Lu Xisheng , |chancellor| of Tang Dynasty Mina
## [doc0896] bleman Cui Zhaowei , |chancellor| of Tang Dynasty Flan
## [doc0898]    He Ning , Chinese |chancellor| ( d. ) Hugh Great , 
## [doc0899] e warlord Zheng Qi , |chancellor| of Tang Dynasty Zoe 
## [doc0900] te ) Liu Chongwang , |chancellor| of Tang Dynasty Li Z
## [doc0900]          Wang Tuan , |chancellor| of Tang Dynasty Wulf
## [doc0901] d writer Xu Yanruo , |chancellor| of Tang Dynasty     
## [doc0902] an ( d. ) Wang Jun , |chancellor| of Later Zhou ( or )
## [doc0902] cember – Wei Yifan , |chancellor| of Tang Dynasty Æthe
## [doc0903]         Feng Yanji , |chancellor| of Southern Tang ( d
## [doc0903] dhism ( d. ) Li Gu , |chancellor| of Later Zhou ( d. )
## [doc0903] Chinese official and |chancellor| Su Jian , Chinese of
## [doc0904] e date ) Zhang Jun , |chancellor| of Tang Dynasty     
## [doc0904] lic Church Cui Yin , |chancellor| of Tang dynasty ( b.
## [doc0905]    Pei Shu , Chinese |chancellor| ( b. ) Wang Pu , Chi
## [doc0905] y Cui Yuan , Chinese |chancellor| Dugu Sun , Chinese c
## [doc0905]    Pei Shu , Chinese |chancellor| ( b. ) Wang Pu , Chi
## [doc0906]  January – Liu Can , |chancellor| of Tang Dynasty Febr
## [doc0907] orced to abdicate by |chancellor| Zhu Quanzhong .     
## [doc0907] orced to abdicate by |chancellor| Zhu Quanzhong .     
## [doc0907] orced to abdicate by |chancellor| Zhu Quanzhong .     
## [doc0908] ang Wenwei , Chinese |chancellor| May –               
## [doc0910]     Yan Xu , Chinese |chancellor| ( d. ) January – Luo
## [doc0911] mir ( d. ) Fan Zhi , |chancellor| of Song dynasty ( d.
## [doc0912] te date ) Zhang Ce , |chancellor| of Later Liang Zhu Y
## [doc0912]     May – Xue Yiju , |chancellor| of Later Liang July 
## [doc0913] d. ) March Du Xiao , |chancellor| of Later Liang Zhang
## [doc0922]  ) Wang Pu , Chinese |chancellor| and writer ( d. ) Fe
## [doc0923] iu Honggao , Chinese |chancellor| ( d. ) June – Robert
## [doc0924]         Tang bestows |chancellor| title on Gao Jixing 
## [doc0925]      Zhao Guangyin , |chancellor| of Later Tang       
## [doc0927] n Huan , general and |chancellor| of Later Tang Shin S
## [doc0927]  Ge , politician and |chancellor| of Former Shu       
## [doc0927] re August Doulu Ge , |chancellor| of Later Tang Wei Yu
## [doc0928] Chinese official and |chancellor| June – Louis Blind ,
## [doc0929] Chinese official and |chancellor| Gao Yu , Chinese chi
## [doc0930] ic October – Li Qi , |chancellor| of Later Liang ( b. 
## [doc0930]   June – Xiao Qing , |chancellor| of Later Liang ( b. 
## [doc0934]        Yun , Chinese |chancellor| ( approximate date )
## [doc0935] Chinese official and |chancellor| Zhao Feng , Chinese 
## [doc0935] Chinese official and |chancellor| November Chen Jinfen
## [doc0936] Xu Ji , official and |chancellor| of Former Shu Septem
## [doc0937]       Wang Lingmou , |chancellor| of Wu December – Sie
## [doc0938]  Abbasid Shen Song , |chancellor| of Wuyue ( b. )     
## [doc0940]         Yi , Chinese |chancellor| ( b. ) November – Ab
## [doc0940] Chinese official and |chancellor|
## [doc0941] ng Dingbao , Chinese |chancellor| ( b. )              
## [doc0941] ang Yanhan , Chinese |chancellor| ( b. ) February – Wu
## [doc0941] Chinese official and |chancellor|
## [doc0943] March – Pi Guangye , |chancellor| of Wuyue ( b. )     
## [doc0943]  Chinese officer and |chancellor| ( b. )              
## [doc0943]        Liu Honggao , |chancellor| of Southern Han ( b.
## [doc0943] ongda , official and |chancellor| of Wuyue ( b. )     
## [doc0944]  Hongchang , Chinese |chancellor| Mahipala I , Gurjara
## [doc0944] Chinese official and |chancellor| April –             
## [doc0945]  Chinese general and |chancellor| Yang Sigong , Chines
## [doc0946] nians Zhao Jiliang , |chancellor| of Later Shu ( b. ) 
## [doc0947] nd governor Liu Xu , |chancellor| of Later Tang and La
## [doc0948] Chinese official and |chancellor| Al - Qasim Guennoun 
## [doc0948]  Chinese general and |chancellor| November –          
## [doc0949] a , a politician and |chancellor| ( kampaku ) , dies a
## [doc0950] l Yang Bin , Chinese |chancellor| Shi Hongzhao , Chine
## [doc0951]  Zhao Ying , Chinese |chancellor| ( b. )              
## [doc0951] Chinese official and |chancellor| January –           
## [doc0951] Chinese official and |chancellor| Liu Chengyou , emper
## [doc0951] – Lu Wenji , Chinese |chancellor| ( b. )              
## [doc0952] Chinese official and |chancellor| Mansur ibn Qara-Tegi
## [doc0952] Chinese official and |chancellor| Mansur ibn Qara -Teg
## [doc0953] , Chinese singer and |chancellor| Abas I , king of Bag
## [doc0953] Chinese official and |chancellor| Muhammad bin Musafir
## [doc0953] Chinese official and |chancellor| Muhammad bin Musafir
## [doc0954] , Chinese prince and |chancellor| ( b. ) September – L
## [doc0955] Chinese official and |chancellor| ( b. )              
## [doc0956]  Sun Sheng , Chinese |chancellor| December – Wulfstan 
## [doc0956] – Su Yugui , Chinese |chancellor| ( b. )              
## [doc0959] hui , Chinese Khitan |chancellor| ( b. )              
## [doc0960]     August – Li Gu , |chancellor| of Later Zhou ( b. )
## [doc0960]         Feng Yanji , |chancellor| of Southern Tang ( b
## [doc0961] Zhun , Chinese Grand |chancellor| ( approximate date )
## [doc0961] nce Li Tao , Chinese |chancellor| ( approximate date )
## [doc0962] ang Qinruo , Chinese |chancellor| ( approximate date )
## [doc0964]            Fan Zhi , |chancellor| of Song Dynasty Dece
## [doc0965] l Wu Cheng , Chinese |chancellor| ( b. )              
## [doc0965]     Li Hao , Chinese |chancellor| ( approximate date )
## [doc0966]     Ding Wei , grand |chancellor| of Song Dynasty ( d.
## [doc0967] mir Yan Xu , Chinese |chancellor| ( b. )              
## [doc0968] uan Dezhao , Chinese |chancellor| ( b. ) April – Abu F
## [doc0969] Chinese official and |chancellor| of Tang dynasty ( b.
## [doc0971] ecretary Willigis as |chancellor| ( guardian of empero
## [doc0978] Zeng , Chinese grand |chancellor| ( approximate date )
## [doc0982]  ) Wang Pu , Chinese |chancellor| ( b. )              
## [doc0983] election of imperial |chancellor| and appoints John XI
## [doc0988] et ( d . ) Pang Ji , |chancellor| of Song Dynasty ( d 
## [doc0989] ber – Fan Zhongyan , |chancellor| of Song Dynasty ( d.
## [doc0994] ribert of Cologne as |chancellor| of Italy . [ ]      
## [doc1006]  – Wen Yanbo , grand |chancellor| ( d. ) Al - Lakhmi ,
## [doc1019] Chinese official and |chancellor| ( d . ) Wen Tong , C
## [doc1021] Wang Anshi , Chinese |chancellor| ( d . ) Eudokia Makr
## [doc1023] Zhun , Chinese grand |chancellor| November – Eilward ,
## [doc1025] ang Qinruo , Chinese |chancellor| December –          
## [doc1037] mia Ding Wei , grand |chancellor| of Song Dynasty Farr
## [doc1045]  Würzburg , imperial |chancellor| of Italy ( b. c. ) [
## [doc1052] une – Fan Zhongyan , |chancellor| of Song dynasty ( b.
## [doc1063] Chinese official and |chancellor| ( b. )              
## [doc1065]         Sima Guang , |chancellor| of Song Dynasty , he
## [doc1069] g Anshi as his chief |chancellor| .                   
## [doc1073] nshi , Chinese chief |chancellor| of Song Dynasty , cr
## [doc1084] Sima Guang , Chinese |chancellor| and historian , with
## [doc1085] Chinese official and |chancellor| ( b. )              
## [doc1086] Wang Anshi , Chinese |chancellor| ( b. )              
## [doc1090]  – Qin Hui , Chinese |chancellor| ( d. ) unknown dates
## [doc1097] anbo , Chinese grand |chancellor| ( b. )              
## [doc1097] se general and grand |chancellor| ( d . )             
## [doc1109] h monk and , becomes |chancellor| of cathedral at Laon
## [doc1137] ry – Guarin , Norman |chancellor| January –           
## [doc1147] apellanus , Scottish |chancellor| Martim Moniz , Portu
## [doc1150] , English bishop and |chancellor| Suryavarman II , rul
## [doc1152] English governor and |chancellor| Theobald II ( Great 
## [doc1154] an of low birth , to |chancellor| and his adviser .   
## [doc1162] Henricus ) , Italian |chancellor| Hugh de Morville , N
## [doc1162] ing Henry II has his |chancellor| Thomas Becket electe
## [doc1164]  Scottish bishop and |chancellor| Hodierna of Jerusale
## [doc1164]  Jun , Chinese grand |chancellor| ( b. )              
## [doc1168] du Perche , Sicilian |chancellor| , is accused of plot
## [doc1169] du Perche , Sicilian |chancellor|
## [doc1175] points William II as |chancellor| of Jerusalem and is 
## [doc1178] , English bishop and |chancellor| William of Lucca , I
## [doc1199] r as his advisor and |chancellor| .                   
## [doc1202] e Beaumont , English |chancellor| and bishop William o
## [doc1218]  Hungarian prelate , |chancellor| and bishop Theobald 
## [doc1224] Thomas I , Hungarian |chancellor| and archbishop Willi
## [doc1227]  military leader and |chancellor| ( d. ) Chomden Rigpe
## [doc1228] bishop of Csanád and |chancellor| Geoffrey I of Villeh
## [doc1236]  French nobleman and |chancellor| ( b. )              
## [doc1245] prelate , bishop and |chancellor| Diya al - Din al - M
## [doc1249] ella Vigna , Italian |chancellor| and diplomat ( d. ) 
## [doc1261] edict II , Hungarian |chancellor| , governor and archb
## [doc1262] g , English cleric , |chancellor| and bishop June –   
## [doc1273] an cleric , priest , |chancellor| and chronicler Alber
## [doc1273] ish monk , abbot and |chancellor| Robert Walerand , En
## [doc1274]  de Merton , English |chancellor| and regent , retires
## [doc1275] apanese nobleman and |chancellor| ( b. )              
## [doc1275] ,000 men led by Song |chancellor| Jia Sidao on Yangtze
## [doc1275] g , Hungarian vice - |chancellor| and bishop ( b. ) Xu
## [doc1276] rian priest , vice - |chancellor| and archbishop Ela L
## [doc1279] nthony Bek , English |chancellor| and bishop ( d. ) Ho
## [doc1279]  , French bishop and |chancellor| September – Robert K
## [doc1287] , Mongol general and |chancellor| ( b. ) Bernhard I , 
## [doc1289]  Mongol nobleman and |chancellor| February – Przemko o
## [doc1290] lish bishop , vice - |chancellor| and statesman April 
## [doc1292] , English bishop and |chancellor| ( b. ) November – Eu
## [doc1292] , English bishop and |chancellor| ( d. ) Saionji Neish
## [doc1297] er , Scottish monk , |chancellor| and bishop September
## [doc1299]  Nonancourt , French |chancellor| October – Jakuen , J
## [doc1300] obleman , knight and |chancellor| ( d. ) Dionigi di Bo
## [doc1302] ey Giffard , English |chancellor| and bishop ( b. )   
## [doc1302]  knight , lawyer and |chancellor| Raoul II of Clermont
## [doc1302]  knight , lawyer and |chancellor| Raoul II of Clermont
## [doc1313] English nobleman and |chancellor| ( d. ) August – Kogo
## [doc1313] ister , diplomat and |chancellor| Gonsalvus of Spain ,
## [doc1313] ister , diplomat and |chancellor| Gonsalvus of Spain ,
## [doc1314] , Chinese official , |chancellor| and politician ( d. 
## [doc1314] , Chinese official , |chancellor| and politician ( d. 
## [doc1315] rench politician and |chancellor| ( d. ) Raoul II of B
## [doc1315] rench politician and |chancellor| ( d. )              
## [doc1317] lish philosopher and |chancellor| ( b. ) August – Bern
## [doc1319] , English bishop and |chancellor| [ ]                 
## [doc1320]  , English judge and |chancellor| Olivier III de Cliss
## [doc1320] lt , German priest , |chancellor| and archbishop July 
## [doc1320]  , English judge and |chancellor| Olivier III de Cliss
## [doc1320] , English bishop and |chancellor| [ ]                 
## [doc1320]  , Polish bishop and |chancellor| ( b. ) March – Ayurb
## [doc1340] , English bishop and |chancellor| ( b. ) December –   
## [doc1363] mber – Jean Gerson , |chancellor| of University of Par
## [doc1380] ongwu Emperor purges |chancellor| of China , Hu Weiyon
## [doc1429] July – Jean Gerson , |chancellor| of University of Par
## [doc1437] p of Durham and lord |chancellor| of England ( b. )   
## [doc1444] artin Gouge , French |chancellor| date unknown –      
## [doc1465]  nominal sheriff and |chancellor| Johann Tetzel , Germ
## [doc1465]  nominal sheriff and |chancellor| Johann Tetzel , Germ
## [doc1498] at Council as second |chancellor| of Republic of Flore
## [doc1506]  French cardinal and |chancellor| ( d . ) February – J
## [doc1523] as Ruthall , English |chancellor| of University of Cam
## [doc1530] omley , English lord |chancellor| ( d . ) January – Ga
## [doc1535]  Niels Kaas , Danish |chancellor| ( d. ) James Melvill
## [doc1535]  Niels Kaas , Danish |chancellor| ( d. ) James Melvill
## [doc1583]  French cardinal and |chancellor| ( b . )             
## [doc1587] omley , English lord |chancellor| ( b. ) April –      
## [doc1594]  Niels Kaas , Danish |chancellor| ( b. )              
## [doc1595] dziwill , Lithuanian |chancellor| ( d . ) January – Ba
## [doc1616] on Hocher , Austrian |chancellor| ( d . ) August – Joh
## [doc1683] on Hocher , Austrian |chancellor| ( b. )              
## [doc1693] , Russian diplomat , |chancellor| of Russian Empire ( 
## [doc1711] ustrian diplomat and |chancellor| ( d. ) February – Om
## [doc1835] Methodist preacher , |chancellor| of Syracuse Universi
## [doc1871]    December – German |chancellor|
## [doc1892] Austrian statesman , |chancellor| ( d. ) Luis Trenker 
## [doc1908] Methodist preacher , |chancellor| of Syracuse Universi
## [doc1932] h law . May – German |chancellor| Heinrich Brüning is 
## [doc1932] Schleicher as German |chancellor| after he ousts Papen
## [doc1932] sible appointment as |chancellor| .                   
## [doc1932] rt Schleicher 's new |chancellor| .                   
## [doc1932] rt Schleicher 's new |chancellor| .                   
## [doc1934] an Nazis assassinate |chancellor| Engelbert Dollfuss ,
## [doc1949] uer is first federal |chancellor| .                   
## [doc1953] re-elected as German |chancellor| .                   
## [doc1953] re-elected as German |chancellor| .                   
## [doc1974] dt , West Germany 's |chancellor| , resigns .
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col()

get <- dsst_kwic(anno, terms = "king", n = 2000000000000) %>%
  substr(2,8)
## [doc0001] t ( d. ) Izates II , |King | of Adiabene ( d. ) A
## [doc0002] ts with Phraates V , |king | of Parthia , on Euph
## [doc0004]  Hyeokgeose , Korean |king | of Silla ( b. )     
## [doc0004] ds Bak Hyeokgeose as |king | of Korean kingdom of
## [doc0004]                      |King | Phraataces and Queen
## [doc0004] es II , Roman client |king | of Armenia ( b. )   
## [doc0004]  ) Daemusin , Korean |king | of Goguryeo ( d . ) 
## [doc0005] ledges Cunobelinus , |king | of Catuvellauni , as
## [doc0006]         Orodes III , |king | ( shah ) of Parthian
## [doc0007] Edessa is deposed as |king | of Osroene .        
## [doc0008] Tincomarus , deposed |king | of Atrebates , flees
## [doc0008]    Vonones I becomes |king | ( shah ) of Parthian
## [doc0009] first recorded to be |king | of Catuvellauni at C
## [doc0012]     Rhoemetalces I - |king | of Odrysian kingdom 
## [doc0013] sa is reinstalled as |king | of Osroene .        
## [doc0016] onones , beleaguered |king | of Armenia , is summ
## [doc0017]         Maroboduus , |King | of Marcomanni , is d
## [doc0017]      Antiochus III , |King | of Commagene Archela
## [doc0018]  he is recognized as |king | and friend of Rome .
## [doc0019]  Gondophares becomes |king | of Saces .          
## [doc0019] III ) , Roman client |king | of Thrace Vonones I 
## [doc0019]                      |King | Vonones             
## [doc0019]         Maroboduus , |king | of Marcomanni , is d
## [doc0021] f Dongbuyeo , Korean |king | ( b. )              
## [doc0021]                      |King |
## [doc0023]            Juba II , |king | of Mauretania [ ] ( 
## [doc0024]                      |King |
## [doc0024] oman consul Namhae , |king | of Silla [ ]        
## [doc0027]   Herod Agrippa II , |king | of Judea Petronius ,
## [doc0028]                      |King |
## [doc0028] o of Baekje , Korean |king | [ ]                 
## [doc0030] of Goguryeo , Korean |king | ( d. ) Poppaea Sabin
## [doc0034] s III , Roman client |king | of Armenia ( b. )   
## [doc0035] iridates III becomes |king | of Parthia ( until )
## [doc0035] k I ) , Roman client |king | of Armenia Epaticcus
## [doc0037]         Maroboduus , |king | of Marcomanni ( b. c
## [doc0038] licia , Roman client |king | Du Shi , Chinese inv
## [doc0038] es II , Roman client |king | Tiberius Gemellus , 
## [doc0039]          Agrippa I , |king | of Judaea , successf
## [doc0040]   Vardanes I becomes |king | of Parthia , opposed
## [doc0040] tania , Roman client |king | ( executed by Caligu
## [doc0041] audius makes Agrippa |king | of Judea . [ ]      
## [doc0042]   Suro becomes first |king | of Geumgwan Gaya , o
## [doc0043]       Eleven British |kings| , probably including
## [doc0043]                      |King | Vardanes            
## [doc0043]         Togodumnus , |king | of Catuvellauni Trun
## [doc0043]       Eleven British |kings| , probably including
## [doc0044] marries Prasutagus , |king | of British Celtic tr
## [doc0044]    Herod Agrippa I , |king | of Judea ( b. ) [ ] 
## [doc0045]  date ) Vardanes I , |king | of Parthian Empire (
## [doc0046]   After death of its |king | , Thracia becomes a 
## [doc0046] s III , Roman client |king | of Thrace ( murdered
## [doc0047] itician Vardanes I , |king | of Parthian Empire  
## [doc0050] gar V , Roman client |king | of Osroene ( approxi
## [doc0051]  ) [ ] Gotarzes II , |king | of Parthian Empire L
## [doc0051]  Vologases I becomes |king | of Parthian Empire .
## [doc0051] menia , Roman client |king | Vonones II , king of
## [doc0055] az , Parthian client |king | ( b. c. )           
## [doc0058] thian archers led by |king | Tiridates I .       
## [doc0058] nes I , Roman client |king | of Iberia Rhadamistu
## [doc0059] ital as bodyguard to |king | , supported by fifte
## [doc0060] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0060]        Abdagases I , |king | of Parthian Empire (
## [doc0060]                  The |king | 's widow , Boudica ,
## [doc0060] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0060]                  The |king | 's widow , Boudica ,
## [doc0061]                  The |king | 's widow , Boudica ,
## [doc0061]                  The |king | 's widow , Boudica ,
## [doc0061] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0061] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0062] d by Parthians under |king | Tiridates I .       
## [doc0062] he assault fails and |king | Vologases I retreats
## [doc0066] and two other client |kings| , Antiochus IV of Co
## [doc0068] dates , Roman client |king |
## [doc0069] ection of Venutius , |king | of Brigantes .      
## [doc0070] us II , Roman client |king | of Nabatea Phannias 
## [doc0070] s in Greek ) becomes |king | of Aksum .          
## [doc0071]      Chadae , Korean |king | of Goguryeo ( d. ) L
## [doc0071]  Reign of Rabel II , |king | of Nabataea .       
## [doc0073] nese protectorate on |kings| of Lop Nor and Khota
## [doc0075] eorgia ) for Iberian |king | Mithridates I .     
## [doc0077] u of Baekje , Korean |king | [ ]                 
## [doc0077]                      |King |
## [doc0078]   Pacorus II becomes |king | of Parthian Empire (
## [doc0078] tician Vologases I , |king | of Parthian Empire [
## [doc0080]       Vologases II , |king | of Parthian Empire Z
## [doc0080]                      |King |
## [doc0081]  [ ] Artabanus III , |king | of Parthian Empire  
## [doc0087]    Decebalus becomes |king | of Dacia .          
## [doc0088] lus becomes a client |king | of Rome , he receive
## [doc0090] ris I , Roman client |king |
## [doc0100] aw of Pacores , last |king | of Indo - Parthian K
## [doc0100] ] [ ] Pakores ( last |king | of Indo - Parthian K
## [doc0100]  Agrippa II , Jewish |king | of Judea ( b. ) Apol
## [doc0105] mmarian Pacorus II , |king | of Parthian Empire P
## [doc0106]          Decebalus , |king | of Dacia ( suicide ,
## [doc0110] Pacorus II , ruler ( |King | of Kings ) of Parthi
## [doc0112]                      |King | Jima succeeds       
## [doc0113] tended by GajaBahu , |king | of Central Sri Lanka
## [doc0116]  removes Osroes I as |king | of Parthia , and app
## [doc0119]  Nahapana , Scythian |king | .                   
## [doc0125] iputra Satakarni , a |king | of Andhra dynasty , 
## [doc0128]                      |King |
## [doc0129] , Egyptian patriarch |King | Osroes I of Parthian
## [doc0130]      Huviska becomes |king | of Kushan Empire in 
## [doc0130]         The Scythian |king | Rudradaman I reconqu
## [doc0135] es , Indo - Parthian |king | ( d. ) Epictetus , G
## [doc0136] Martyrs Gajabahu I , |king | of Raja Rata ( moder
## [doc0140] inus Pius recognizes |king | of Quadi , who becom
## [doc0140]                      |King | Mithridates V dies ;
## [doc0140] b. ) Mithridates V , |king | of Parthian Empire  
## [doc0147]                      |King | Vologases           
## [doc0147] b. ) Vologases III , |king | of Parthian Empire X
## [doc0147]                      |King | Vologases           
## [doc0153] alces , Roman client |king |
## [doc0154]                      |King | Eupator of Bosphorus
## [doc0159] ashri Satakarni , as |King | Satavahana of Andhra
## [doc0166]                      |King | Chogo of Baekje succ
## [doc0167]                      |King | Chogo of Baekje wage
## [doc0174] pator , Roman client |king |
## [doc0174] takarni , Satavahana |king | of Andhra .         
## [doc0184]                      |King | Gogukcheon ( Gaonanw
## [doc0184]      Beolhyu becomes |king | of Silla . [ ]      
## [doc0185]  arsman ) , Georgian |king | of Iberia Tigidius P
## [doc0186] aemus , Roman client |king | of Armenia          
## [doc0190]                      |King | Vologases           
## [doc0191]                      |King | Vologases           
## [doc0191]  b. ) Vologases IV , |king | of Parthian Empire Z
## [doc0192]         Cao Zhi ( or |King | Chen ) , Chinese pri
## [doc0195]                      |King | Vologases V and othe
## [doc0196]       Naehae becomes |king | of Silla . [ ]      
## [doc0199] f Geumgwan Gaya , as |king | of Korean kingdom of
## [doc0200] ap dynasty , becomes |king | of Malwa in Classica
## [doc0203] rince Vijaya becomes |king | of Andhra Empire .  
## [doc0208]                      |King | Vologases           
## [doc0208] tician Vologases V , |king | of Parthian Empire  
## [doc0211]   Ardashir I becomes |king | of part of Persia . 
## [doc0214]         Gusu becomes |king | of Baekje . [ ]     
## [doc0215]            I becomes |king | of Caucasian Albania
## [doc0217]                      |King | Artabanus V signs a 
## [doc0219]  Pulona , Satavahana |king | of Andhra , begins i
## [doc0219]  He declares himself |king | of Hanzhong afterwar
## [doc0220]                      |King | Ardashir I , founder
## [doc0224]                      |King | Ardashir I defeats A
## [doc0224] ril – Artabanus IV , |king | of Parthia Du Ji , C
## [doc0226]  b. ) Farn - Sasan , |king | of Parthian Kingdom 
## [doc0227]                  The |kings| of Kushan Empire and
## [doc0227]                      |King | Ardashir I annexes h
## [doc0230]                      |King | Ardashir I of Persia
## [doc0230]        Jobun becomes |king | of Korean kingdom of
## [doc0232] s III , Roman client |king |
## [doc0234]        Saban becomes |king | of Korean kingdom of
## [doc0235] tys ) , Roman client |king | Tiberius Julius Rhes
## [doc0237]                      |King | Ardashir I of Persia
## [doc0241] ( d. ) Sanatruq II , |king | of Hatra ( Ending of
## [doc0242]  ( b. ) Ardashir I , |king | of Sassanid Empire (
## [doc0242]                      |King | Ardashir I , founder
## [doc0244]  Battle of Misiche : |King |
## [doc0246] Baekje Kingdom under |King | Goi of Baekje attack
## [doc0247]     Cheomhae becomes |king | of Korean kingdom of
## [doc0250]      The Goths under |King | Cniva invade Moesia 
## [doc0251]             Sassanid |King |
## [doc0252] tle of Barbalissos : |King |
## [doc0252] rov ) , Roman client |king | of Armenia          
## [doc0252] d VI as new Armenian |king | .                   
## [doc0253] tle of Barbalissos : |King | Shapur I , defeats a
## [doc0254] anzes , Roman client |king | Xiahou Xuan ( or Tai
## [doc0256]                      |King |
## [doc0257] Antioch , Syria from |King | Shapur I of Persia .
## [doc0260]                      |King |
## [doc0260]              Persian |king | Shapur I destroys Ca
## [doc0263]                      |King |
## [doc0264] Wei , styles himself |King | of Jin , penultimate
## [doc0266] s himself with title |king | of kings .          
## [doc0266]                      |King |
## [doc0267]                      |King | Septimius           
## [doc0267] ptimius Odaenathus , |king | of Palmyra ( assassi
## [doc0271]                      |King |
## [doc0272] Shapur I ( Great ) , |king | of Sassanid Empire S
## [doc0273] istorian Hormizd I , |king | of Sassanid Empire S
## [doc0273]                      |King | Hormizd I of Persia 
## [doc0273] on by various vassal |kings| .                   
## [doc0274]           Bahram I , |king | of Sassanid Empire C
## [doc0274] rt of late Sassanian |King | Shapur I and on long
## [doc0276] ty ( d. ) Bahram I , |king | of Sassanid Empire M
## [doc0276]                      |King | Bahram              
## [doc0279] an prince and client |king | Tufa Shujineng , Chi
## [doc0280]                      |King | Bahram              
## [doc0283]                  The |King | of Kings Bahram II f
## [doc0284]                      |King | of Kings Bahram II i
## [doc0284]        Yurye becomes |king | of Korean kingdom of
## [doc0286]     Chaekgye becomes |king | of Korean kingdom of
## [doc0287] cid Tiridates III as |king | over western portion
## [doc0287]  captures a Germanic |king | , latter having prep
## [doc0288] liance with Frankish |king | Gennobaudes .       
## [doc0291]                      |King | Bahram              
## [doc0293]                      |King | Bahram              
## [doc0293]          Bahram II , |king | of Sassanid Empire B
## [doc0293] eat - uncle Narseh , |king | of Persarmenia , mar
## [doc0296]          The Persian |king | Narseh invades Roman
## [doc0297] aign against Persian |king | Narseh .            
## [doc0298]        Girim becomes |king | of Korean kingdom of
## [doc0298]       Bunseo becomes |king | of Korean kingdom of
## [doc0299]  treaty with Persian |king | Narseh will last for
## [doc0301]                      |King | Tiridates III ( Grea
## [doc0303]  and Tiridates III , |king | of Armenia .        
## [doc0304]   Bunseo of Baekje , |king | of Baekje ( Korea ) 
## [doc0304]        Biryu becomes |king | of Korean kingdom of
## [doc0304]   Bunseo of Baekje , |king | of Baekje ( Korea ) 
## [doc0309]  trip , and Sasanian |king | is mortally wounded 
## [doc0309] hapur II ( Great ) , |king | of Sassanid Empire (
## [doc0309]                      |King | Hormizd II , ruler o
## [doc0309]                After |king | refuses , Hormizd in
## [doc0309] sanid army and kills |king | .                   
## [doc0310]      Haelhae becomes |king | of Korean kingdom of
## [doc0319]                      |King | Chandragupta I succe
## [doc0320]                      |King | Chandragupta I found
## [doc0323] an prince and client |king | Zhang Bin ( or Mengs
## [doc0328]   December – Lakhmid |king | Imru ' al - Qays ibn
## [doc0330]              Ezana , |king | of Axum , extends hi
## [doc0330] ates III ( Great ) , |king | of Armenia Vicinius 
## [doc0335] ndragupta I , Indian |king | of Gupta Empire Chen
## [doc0335]                 I as |king | of Gupta Empire .   
## [doc0337] er – Hannibalianus , |king | of Pontus and nephew
## [doc0337]                      |King | Shapur II of Persia 
## [doc0338]          Shapur II , |king | of Persian Empire , 
## [doc0339] all ) , Roman client |king | ( approximate date )
## [doc0342] is VI , Roman client |king |
## [doc0344]    Biryu of Baekje , |king | of Baekje ( Three Ki
## [doc0344]          His enemy , |King | Shapur II , is force
## [doc0344]          Gye becomes |king | of Korean kingdom of
## [doc0346]    Geunchogo becomes |king | of Korean kingdom of
## [doc0350] Iraq ) is founded by |king | Shapur II .         
## [doc0350]                      |King | Pushyavarman establi
## [doc0352]             Heavenly |King | ( Tian Wang )       
## [doc0356]       Naemul becomes |king | of Silla dynasty ( T
## [doc0357]              Saran , |King | of Ulster , is overt
## [doc0358]            Persia 's |king | Shapur II sends an e
## [doc0359]          Godigisel , |king | of Vandals ( d. )   
## [doc0359]                      |King | Shapur II Great of P
## [doc0360]                      |King | Shapur II continues 
## [doc0363]                      |King | Shapur              
## [doc0368] igned with Macrian , |king | of Bucinobantes , an
## [doc0369]    Fritigern becomes |king | of Visigoths ; amids
## [doc0369]                Their |king | Athanaric is defeate
## [doc0369]                      |King |
## [doc0370]  I ( or Alaricus ) , |king | of Visigoths ( d. ) 
## [doc0371] op ( b. ) Gogugwon , |king | of Goguryeo ( Korea 
## [doc0371]      Sosurim becomes |king | of Goguryeo .       
## [doc0372]                      |King | Athanaric is defeate
## [doc0373]                      |King | Shapur II declares w
## [doc0374] gaeto Great , Korean |king | of Goguryeo ( d. ) [
## [doc0374] menia ( or Papas ) , |king | of Armenia Auxentius
## [doc0375]     Geungusu becomes |king | of Korean kingdom of
## [doc0376] n bishop Ermanaric , |king | of Goths ( Greuthung
## [doc0377]              Persian |king | Shapur II pushes Hun
## [doc0378] ins to replace Mayan |kings| with relatives of Sp
## [doc0379] shir II , governor - |king | of Adiabene , is pla
## [doc0379]           Gunderic , |king | of Vandals and Alans
## [doc0379]                  [ ] |King | Shapur II , ruler of
## [doc0380] al Athanaric becomes |king | of entire Gothic nat
## [doc0380] d saints Fritigern , |king | of Visigoths Samudra
## [doc0381] ecomes first foreign |king | to visit Eastern Rom
## [doc0381]  has been undisputed |king | of all Goths for jus
## [doc0381] of Genoa Athanaric , |king | of Visigoths Saint M
## [doc0383]                      |King | Ardashir II dies aft
## [doc0383] dashir II , Sassanid |king | ( shah ) ( King of K
## [doc0384]           Geungusu , |king | of Baekje ( Korea ) 
## [doc0384]                      |King | Shapur III signs a t
## [doc0384]                      |King | Chimnyu ascends to o
## [doc0385] sa of Baekje becomes |king | of ancient Korean ki
## [doc0385] ibly ) [ ] Chimnyu , |king | of Baekje ( Korea ) 
## [doc0387]                      |King |
## [doc0388]                      |King | Shapur III dies afte
## [doc0388] mes twelfth Sassanid |king | of Persia .         
## [doc0388] i state Shapur III , |king | of Sassanid Empire (
## [doc0389]  needed ] Geiseric , |king | of Vandals and Alans
## [doc0390]              Bleda , |king | of Huns ( approximat
## [doc0390]  , daughter of Gupta |king | Chandragupta II .   
## [doc0391]                      |King | Gwanggaeto Great of 
## [doc0392]         Asin becomes |king | of Korean kingdom of
## [doc0394]      Jangsu , Korean |king | of Goguryeo ( d. )  
## [doc0395]                      |King | Rudrasimha III , rul
## [doc0395] alty and is declared |king | , waging war against
## [doc0397] ch – K'uk B'alam I , |king | of Palenque ( Mexico
## [doc0399] Siricius Bahram IV , |king | of Sassanid Empire (
## [doc0399]                      |King | Bahram IV dies after
## [doc0401] e Visigoths , led by |king | Alaric I , cross Alp
## [doc0402]     Silseong becomes |king | of Korean kingdom of
## [doc0402]                      |King | Gwanggaeto Great of 
## [doc0402]                      |King | Alaric I sends envoy
## [doc0405]       Jeonji becomes |king | of Korean kingdom of
## [doc0405]                      |King | Radagaisus leads an 
## [doc0405]  court of Alaric I , |king | of Visigoths.       
## [doc0406]  Radagaisus , Gothic |king | Alban of Mainz , pri
## [doc0408]                      |King | Alaric              
## [doc0408]                      |King | Yazdegerd           
## [doc0409]       The Visigothic |king | Alaric I lays siege 
## [doc0410] te date ) Alaric I , |king | of Visigoths [ ]    
## [doc0410] Ataulf , who becomes |king | of Visigoths .      
## [doc0410] Prithivisena becomes |king | of Vakataka in Decca
## [doc0411] general Gundomar I , |king | of Burgundy Yax Nuun
## [doc0411]                      |King |
## [doc0413] e Gwanggaeto Great , |king | of Goguryeo ( b. )  
## [doc0414] arried to Visigothic |king | Ataulf at Narbonne .
## [doc0415]            Athaulf , |king | of Visigoths Chandra
## [doc0415]                      |King | Ataulf and his pregn
## [doc0415]              Euric , |king | of Visigoths ( d. ) 
## [doc0415]  of Ataulf , becomes |king | of Visigoths .      
## [doc0416]                      |King | Wallia occupies gold
## [doc0417]        Nulji becomes |king | of Korean kingdom of
## [doc0417]                      |King | Wallia establishes h
## [doc0418] rius bribes Wallia , |king | of Visigoths , into 
## [doc0418]  Theodoric I becomes |king | of Visigoths .      
## [doc0418] pe Zosimus Attaces , |king | of Alans Wallia , ki
## [doc0420]       Guisin becomes |king | of Korean kingdom of
## [doc0420] uary – Yazdegerd I , |king | of Sassanid Empire F
## [doc0420] us Maximus Valamir , |king | of Ostrogoths ( he i
## [doc0421]                      |King | Bahram V allies hims
## [doc0422] and execute Frankish |king | Theudemeres with his
## [doc0422] date ) Theudemeres , |king | of Franks ( approxim
## [doc0426]                      |King | Gunderic of Vandals 
## [doc0427]                      |King | Jangsu transfers Gog
## [doc0427] stantinople Guisin , |king | of Baekje ( Korea ) 
## [doc0427]         Biyu becomes |king | of Korean kingdom of
## [doc0427]                      |King | Bahram V sends an ex
## [doc0427] Dumnonia , Brythonic |king | ( approximate date )
## [doc0428]            Chlodio , |king | of Salian Franks , i
## [doc0428] ei ( d. ) Gunderic , |king | of Vandals and Alans
## [doc0428]   Artaxias IV , last |king | of Greater Armenia ,
## [doc0428]                      |King | Gunderic , age , die
## [doc0428]                      |King |
## [doc0430]    The Vandals under |King | Genseric extend powe
## [doc0431] er , first barbarian |king | of Italy ( d. )     
## [doc0431]                      |King | Chlodio signs a peac
## [doc0432] e Huns are united by |King | Rugila ( also called
## [doc0434] u state Xia Rugila , |king | of Huns ( approximat
## [doc0434]             Attila , |king | of Huns , consolidat
## [doc0435] ndividually as Mayan |kings| .                   
## [doc0435]                      |King | Genseric concludes a
## [doc0436]                      |King | Theodoric I besieges
## [doc0436]            Gunther , |king | of Burgundians ( app
## [doc0437]        Childeric I , |king | of Salian Franks ( a
## [doc0438] ia ( d. ) Bahram V , |king | of Persian Empire Fe
## [doc0438] s fifteenth Sassanid |king | of Persian Empire . 
## [doc0439]                      |King | Genseric breaks his 
## [doc0440] lgaid mac Fiachrae , |king | of Connacht ( Irelan
## [doc0440] s return to court of |king | Genseric .          
## [doc0440] ) Euric , Visigothic |king | and son of Theodoric
## [doc0441]                      |King | Yazdegerd           
## [doc0441]                      |King | Hermeric dies after 
## [doc0441] an ( d. ) Hermeric , |king | of Suebi John , Patr
## [doc0441]  , Vortimer ( son of |king | Vortigern ) , defeat
## [doc0445] imself , and becomes |king | of Hunnic Empire .  
## [doc0446]  mercenaries , under |King | Vortigern , appeal t
## [doc0446] thinn mac Coelboth , |king | of Leinster ( Irelan
## [doc0447]          Vortigern , |king | of Britons , receive
## [doc0448]            Rechila , |king | of Suebi ( approxima
## [doc0448] daughter of Visigoth |king | Theodoric I and conv
## [doc0448] is father Rechila as |king | of Suebi in Galicia 
## [doc0449] Vortigern , supposed |king | of Britons , invites
## [doc0449] te date ) Kavadh I , |king | of Persian Empire ( 
## [doc0450]  command of Visigoth |king | Theodoric I .       
## [doc0450]                      |King | Yazdegerd           
## [doc0450]  date ) Thrasamund , |king | of Vandals ( d. ) Ju
## [doc0450] i legendary Frankish |king | and supposed great -
## [doc0450]  d. ) Chilperic II , |king | of Burgundy ( approx
## [doc0451] ather Theodoric I as |king | of Visigoths .      
## [doc0451]                      |King | Yazdegerd           
## [doc0451] forces with Visigoth |king | Theodoric I .       
## [doc0451]        Theodoric I , |king | of Visigoths Liu Yik
## [doc0452]           Gundobad , |king | of Burgundians ( app
## [doc0452]            Drest I , |king | of Picts ( approxima
## [doc0452]                      |King | Vortigern marries He
## [doc0453]  Wen Di Thorismund , |king | of Visigoths Wen Di 
## [doc0453] rother Thorismund as |king | of Visigoths , Thori
## [doc0454]    Theodoric Great , |king | of Ostrogoths ( d. )
## [doc0454] er militum ) Ellac , |king | of Huns [ ]         
## [doc0455] une – Sack of Rome : |King | Genseric leads Vanda
## [doc0455]        Gaero becomes |king | of Korean kingdom of
## [doc0455]  his son Oisc become |king | of Kent .           
## [doc0455] ire Biyu of Baekje , |king | of Baekje [ ]       
## [doc0456]  The Visigoths under |King | Theodoric II , actin
## [doc0456] ate date ) Rechiar , |king | of Suebi ( captured 
## [doc0456]           Talorc I , |king | of Picts ( approxima
## [doc0457] seventeenth Sasanian |king | of Persian Empire. [
## [doc0457]       Yazdegerd II , |king | of Persian Empire [ 
## [doc0457] an Empire Merovech , |king | of Salian Franks ( a
## [doc0458] nstantinople Nulji , |king | of Silla ( Korea )  
## [doc0458] s father Merovech as |king | of Salian Franks .  
## [doc0458]         Jabi becomes |king | of Korean kingdom of
## [doc0459]                      |King |
## [doc0459]  saint Hormizd III , |king | of Sasanian Empire (
## [doc0459]                      |King | Theodemir sends his 
## [doc0459]                      |King | Dhatusena of Anuradh
## [doc0459] B'utz Aj Sak Chiik , |king | of Palenque ( Mexico
## [doc0460]                      |King | Genseric , fearing a
## [doc0460]            However , |King | Genseric organizes a
## [doc0460]           Budic II , |king | of Brittany ( approx
## [doc0461]  The Visigoths under |king | Theodoric II recaptu
## [doc0461]                      |King | Genseric continues V
## [doc0461]           Hilderic , |king | of Vandals ( approxi
## [doc0462]  Olybrius Muryeong , |king | of Baekje ( Korea ) 
## [doc0463] d. ) Frumar , Suevic |king | of Galicia ( approxi
## [doc0463]        Childeric I , |king | of Salian Franks , a
## [doc0463] ns , Visigoths under |King | Theodoric II are def
## [doc0464] n ) is unified under |King | Remismund .         
## [doc0464]                      |King | Theodoric II sends R
## [doc0464] te ) Conall Gulban , |king | of Tir Chonaill ( ap
## [doc0465] ty Eógan mac Néill , |king | of Tír Eoghain ( Ire
## [doc0465]                      |King | Remismund establishe
## [doc0466]             Arthur , |king | of Britons ( approxi
## [doc0466]  b. ) Theodoric II , |king | of Visigoths Yifu Hu
## [doc0466]                      |King | Theodoric           
## [doc0467]  d. ) Cerdic , first |king | of Anglo - Saxon Wes
## [doc0467]             Summer – |King | Genseric extends his
## [doc0468] Hilarius Dengizich , |king | of Huns ( approximat
## [doc0469]                      |King | Euric declares himse
## [doc0469] with Salian Frankish |king | Childeric I , agreei
## [doc0469] y ( d. ) Dengizich , |king | of Huns ( approximat
## [doc0470]  K'inich Popol Hol , |king | of Maya city of Copá
## [doc0471]  father Theodemir as |king | of Ostrogoths , sett
## [doc0473]                      |King | Euric orders invasio
## [doc0473]            Gondioc , |king | of Burgundy ( approx
## [doc0473] s died , and becomes |king | of Burgundians .    
## [doc0473]            Kavad I , |king | ( shah ) of Sasanian
## [doc0474]          Theodemir , |king | of Ostrogoths ( appr
## [doc0475]              Gaero , |king | of Baekje ( Korea ) 
## [doc0475]        Munju becomes |king | of Baekje . [ ]     
## [doc0476] laimed rex Italiae ( |king | of Italy ) by his tr
## [doc0476]                      |King | Gaiseric gives Sicil
## [doc0476]  The Visigoths under |King | Euric march into Ita
## [doc0477]              Munju , |king | of Baekje ( Korea ) 
## [doc0477] January – Genseric , |king | of Vandals and Alans
## [doc0477]      Samgeun becomes |king | of Korean kingdom of
## [doc0477]        Aelle , first |king | of South Saxons , la
## [doc0479]            Samgeun , |king | of Baekje ( Korea ) 
## [doc0479]    Dongseong becomes |king | of Korean kingdom of
## [doc0479] tish , is proclaimed |king | of Britons ( accordi
## [doc0479]         Soji becomes |king | of Korean kingdom of
## [doc0479]                      |King | Theodoric Great star
## [doc0480]                      |King | Chilperic           
## [doc0480]  The Visigoths under |King | Euric extend rule fr
## [doc0480] Dumnonia , Brythonic |king | ( approximate date )
## [doc0480]            Baderic , |king | of Thuringii ( appro
## [doc0481]        Childeric I , |king | of Salian Franks ( o
## [doc0481]                      |King | Childeric           
## [doc0483] rimthann mac Énnai , |king | of Leinster ( Irelan
## [doc0484]                      |King | Peroz               
## [doc0484]  A few weeks later , |King | Huneric removes Cath
## [doc0484]            Huneric , |king | of Vandals Euric , k
## [doc0484]           February – |King | Huneric passes Edict
## [doc0484]                      |King | Gundobad proclaims L
## [doc0484]         The Visigoth |king | Euric dies and is su
## [doc0484]  crowned and becomes |king | of Persia .         
## [doc0484] hamund , who becomes |king | of Vandals .        
## [doc0484] evolt from Ostrogoth |king | Theodoric Great .   
## [doc0485] date ) Theuderic I , |king | of Franks ( approxim
## [doc0485]    Aelle of Sussex , |king | of South Saxons , fi
## [doc0486] to Visigoths ( under |King | Alaric II ) , but Cl
## [doc0486] har , Frankish petty |king | ( regulus ) , as his
## [doc0487]                      |King |
## [doc0487] te date ) Syagrius , |king | of Romans ( approxim
## [doc0488] d by his son Oisc as |king | of Kent .           
## [doc0488] tablished himself as |king | of Italy ( see ) .  
## [doc0488] Wei ( d . ) Balash , |king | of Persian Empire He
## [doc0488] lind uncle Balash as |king | of Persia .         
## [doc0489]  Ostrogoths , led by |king | Theodoric Great , in
## [doc0490]  Burgundians , under |King | Gundobad , cross Alp
## [doc0490]                      |King | Theodoric Great retr
## [doc0490]                      |King | Alaric II supports T
## [doc0492]                      |King | Theoderic Great conq
## [doc0493] er , first barbarian |king | of Italy ( b. )     
## [doc0493] atives to princes or |kings| of Burgundians , Van
## [doc0493] eland Chilperic II , |king | of Burgundy Daniel S
## [doc0495] ráech mac Finchada , |king | of Leinster         
## [doc0495] ( approximate date ) |King | Chlodomer of Franks 
## [doc0495]  Northern Wei ( d. ) |King | Theudebert          
## [doc0496] d historian Gibuld , |king | of Alamanni Gunthamu
## [doc0496]                      |King | Clovis              
## [doc0496]                      |King | Kavadh              
## [doc0496]  death , and becomes |king | of Vandals .        
## [doc0496]        Gibuld , last |king | of Alamanni , is kil
## [doc0496]       Childebert I , |king | of Franks ( d. ) Erz
## [doc0497] gnition to Ostrogoth |king | Theodoric Great , as
## [doc0497]  date ) Chlothar I , |king | of Franks ( d . ) Ha
## [doc0500]     Dauí Tenga Uma , |king | of Connacht ( Irelan
## [doc0500]                      |King | Clovis I pursues him
## [doc0500] ximate date ) Octa , |king | of Kent ( approximat
## [doc0500]         Thrasamund , |king | of Vandals , marries
## [doc0500]     Gwynllyw , Welsh |king | and religious figure
## [doc0500]      Jijeung becomes |king | of Korean kingdom of
## [doc0501]          Godegisel , |king | of Burgundians Pan Y
## [doc0501]                      |King | Gundobad breaks his 
## [doc0501]       He becomes new |king | of Dál Riata ( moder
## [doc0501]  of Lyon Dongseong , |king | of Baekje ( Korea ) 
## [doc0501]     Muryeong becomes |king | of Baekje ( one of T
## [doc0502]           Amalaric , |king | of Visigoths ( d. ) 
## [doc0502] s , called by Gothic |king | Theodoric Great , cl
## [doc0502]                      |King | Kavadh              
## [doc0502] of Iberia , Georgian |king | ( approximate date )
## [doc0502]              March – |King | Gundobad issues a ne
## [doc0503]        Mundhir III , |king | of Lakhmids ( Arab C
## [doc0503]                      |King | Kavadh              
## [doc0503]                      |King | Ernakh , son of Atti
## [doc0503]           ) Ernakh , |king | of Huns output { fon
## [doc0504]                      |King | Kavadh              
## [doc0504]                      |King | Theodoric Great defe
## [doc0505] e date ) Dynod Bwr , |king | of Hen Ogledd ( appr
## [doc0506]           February – |King | Alaric              
## [doc0507]          Alaric II , |king | of Visigoths Aprus ,
## [doc0507] nce with Ostrogothic |king | Theodoric Great .   
## [doc0507]        Hermanafrid , |king | of Thuringii , marri
## [doc0507]  father Alaric II as |king | of Visigoths .      
## [doc0508] sty ( d. ) Geraint , |king | of Dumnonia ( approx
## [doc0508]                      |King | Theodoric Great send
## [doc0508]   Battle of Netley : |King | Cerdic of Wessex mov
## [doc0509] i ( d. ) Chlodoric , |king | of Ripuarian Franks 
## [doc0509] comes first Catholic |king | of Franks , uniting 
## [doc0510]                      |King | Budic               
## [doc0510] dat Abbey Drest II , |king | of Picts ( approxima
## [doc0510]                      |King | Theodoric Great rais
## [doc0511] ovember – Clovis I , |king | of Franks [ ]       
## [doc0511]          Ostrogothic |King | Theodoric Great assu
## [doc0511]           November – |King | Clovis I dies at Par
## [doc0512]                      |King | Theodoric Great gran
## [doc0513]                      |King | Kavadh              
## [doc0513] Wei ( d. ) Gesalec , |king | of Visigoths ( appro
## [doc0514] sa of Sussex becomes |king | of South Saxons afte
## [doc0514]    Beopheung becomes |king | of Korean kingdom of
## [doc0514]    Aelle of Sussex , |king | of Sussex ( approxim
## [doc0515] uintha , daughter of |king | Theodoric Great , ma
## [doc0516]            Hygelac , |king | of Geats ( Sweden ) 
## [doc0516]                      |King | Gundobad of Burgundi
## [doc0516]          Athalaric , |king | of Ostrogoths ( d. )
## [doc0517]                      |King | Sigismund of Burgund
## [doc0517]        Charibert I , |king | of Franks ( approxim
## [doc0518]   Jabalah IV becomes |king | of Ghassanids .     
## [doc0519] Cerdic becomes first |king | of Kingdom of Wessex
## [doc0519] myeong of Goguryeo , |king | of Goguryeo [ ]     
## [doc0520] Ardgal mac Conaill , |king | of Uisneach ( Irelan
## [doc0520]                      |King | Pabo Post Prydain of
## [doc0520]                      |King | Budic               
## [doc0521] arib Ya` fur becomes |king | , supported by Aksum
## [doc0522] reat Galan Erilich , |king | of Picts ( approxima
## [doc0522]  age , is proclaimed |king | of Visigoths .      
## [doc0523]                      |King | Chlothar            
## [doc0523]        Seong becomes |king | of Baekje , one of T
## [doc0523]  reign , and becomes |king | of Vandals and Alans
## [doc0523]                      |King | Sigismund of Burgund
## [doc0523]  in Yemen Muryeong , |king | of Baekje ( Three Ki
## [doc0524] aint [ ] Chlodomer , |king | of Franks Sigismund 
## [doc0524]                May – |King | Sigismund of Burgund
## [doc0525]    Bandzhis Firenz , |king | of Danmark and Medie
## [doc0525]  ( d . ) Liuvigild , |king | of Visigoths ( d. ) 
## [doc0525]                      |King | Theodoric Great send
## [doc0525]              Kaleb , |king | of Aksum , collects 
## [doc0526]  – Theodoric Great , |king | of Ostrogoths ( b. )
## [doc0526]             August – |King | Theodoric Great dies
## [doc0526] man – Persian Wars : |King | Kavad               
## [doc0526] aric , age , becomes |king | of Visigoths , and a
## [doc0527] llan mac Dúnlainge , |king | of Leinster ( Irelan
## [doc0527]                      |King | Cerdic of Wessex and
## [doc0527] scwine becomes first |king | of Essex ( approxima
## [doc0528]                      |King | Seong of Baekje adop
## [doc0528] n , Maharaja ( great |king | ) of Malwa , defeats
## [doc0528] IV ibn al - Harith , |king | of Ghassanids Justin
## [doc0529] ( d. ) [ ] Baderic , |king | of Thuringii ( b. c.
## [doc0529]  by China , as first |king | of fourth dynasty of
## [doc0529] abalah becomes fifth |king | of Ghassanids .     
## [doc0530]          Drest III , |king | of Picts ( approxima
## [doc0530]                      |King | Hilderic is deposed 
## [doc0530]              Cador , |king | of Dumnonia ( Englan
## [doc0531]   Hermanafrid , last |king | of Thuringii , is de
## [doc0531] d - bearer of former |king | Theodoric Great , su
## [doc0531] aine mac Cearbhall , |king | of Uí Maine ( or ) X
## [doc0531]                      |King | Childebert          
## [doc0531]  Clovis I Drest IV , |king | of Picts ( approxima
## [doc0531]                      |King | Kavadh I , age , die
## [doc0531] ty ( b. ) Amalaric , |king | of Visigoths ( assas
## [doc0532]  Áedán mac Gabráin , |king | of Dál Riata ( Scotl
## [doc0532] Peace , with Persian |king | Khosrau I , ending I
## [doc0533] Sardinia ; Gelimer , |king | of Vandals , dispatc
## [doc0533] uderic I and becomes |king | of Austrasia .      
## [doc0533] te date ) Hilderic , |king | of Vandals and Alans
## [doc0534]       Cynric becomes |king | of Wessex ( accordin
## [doc0534]              March – |King | Gelimer surrenders t
## [doc0534]            October – |King | Athalaric dies of tu
## [doc0534] h her but he will be |king | of Ostrogoths in nam
## [doc0534]         The Frankish |kings| Childebert I and Chl
## [doc0534]                      |King | Theudis expands Visi
## [doc0534] ctober – Athalaric , |king | of Ostrogoths Anthem
## [doc0535]         Sigebert I , |king | of Austrasia ( appro
## [doc0535]              April – |King |
## [doc0535]         Theudebald , |king | of Austrasia ( appro
## [doc0536]          Theodahad , |king | of Ostrogoths ( assa
## [doc0536]           He becomes |king | of Ostrogoths and as
## [doc0537] ( 45,000 men ) under |King | Vitiges begins siege
## [doc0537] son ( or nephew ) of |King | Arthur , also in Bat
## [doc0537] aine mac Cearbhall , |king | of Uí Maine ( or )  
## [doc0537]  Battle of Camlann : |King |
## [doc0537] verius King Arthur , |King | of Britons , in Batt
## [doc0538]             Summer – |King |
## [doc0538]                      |King | Cuneglas of Rhos aba
## [doc0538] c Domangairt becomes |king | of Dál Riata ( Scotl
## [doc0538] f Antioch Cailtram , |king | of Picts ( approxima
## [doc0538] ch – Siege of Rome : |King |
## [doc0538]                      |King | Seong of Paekche ( K
## [doc0539] f Kent Chilperic I , |king | of Neustria ( approx
## [doc0539] le Wacho and becomes |king | of Lombards .       
## [doc0540] ish bishop Vitiges , |king | of Ostrogoths Yifu ,
## [doc0540]  succeeds Vitiges as |king | of Ostrogoths , and 
## [doc0540]                      |King | Khosrau I , jealous 
## [doc0540]            Authari , |king | of Lombards ( approx
## [doc0540]     Jinheung becomes |king | of Korean kingdom of
## [doc0540]                      |King | Custennin ap Cado is
## [doc0540] ed by a ruler ( High |King | ) or overlord , whil
## [doc0541]                      |King | Khosrau I intervenes
## [doc0541]    Totila is elected |king | by Ostrogothic noble
## [doc0541] t in Lazica Eraric , |king | of Ostrogoths Ildiba
## [doc0542] Battle of Faventia : |King |
## [doc0542]                      |King | Childebert          
## [doc0542] of Arles Eógan Bél , |king | of Connacht ( Irelan
## [doc0543]                      |King | Pulakeshin          
## [doc0543] n Zhou ( d. ) Octa , |king | of Kent ( approximat
## [doc0544]                      |King | Khosrau             
## [doc0545]                      |King | Khosrau             
## [doc0545]                      |King |
## [doc0545] mate date Budic II , |king | of Brittany Laurence
## [doc0546] succeeds Walthari as |king | of Lombards .       
## [doc0546]           Walthari , |king | of Lombards         
## [doc0547]                      |King |
## [doc0547] n Hir ap Cadwallon , |king | of Gwynedd ( approxi
## [doc0547]  years , and becomes |king | of Austrasia ( or ) 
## [doc0547] eat of Anglo - Saxon |kings| ( according to Histo
## [doc0548] e Empress Carcasan , |king | of Ifuraces ( Algeri
## [doc0548]                      |King | Gubazes             
## [doc0548]       Theudebert I , |king | of Austrasia ( or ) 
## [doc0548]            Theudis , |king | of Visigoths        
## [doc0549] ia [ ] Theudigisel , |king | of Visigoths ( assas
## [doc0549] ceeds Theudigisel as |king | of Visigoths , after
## [doc0549]        Theudigisel , |king | of Visigoths ( assas
## [doc0549] y – Ailill Inbanda , |king | of Connacht ( Irelan
## [doc0550] The Ostrogoths under |king | Totila recapture Rom
## [doc0550]            Drest V , |king | of Picts Germanus , 
## [doc0550]            Drest V , |king | of Picts Germanus , 
## [doc0550]           Chararic , |king | of Suevi , converts 
## [doc0551] der joint command of |kings| Totila and Theudebal
## [doc0551] s against Visigothic |king | Agila .             
## [doc0552] a Gothic force under |king | Totila near Taginae 
## [doc0552]             Cynric , |king | of Wessex , captures
## [doc0552]         Æthelberht , |king | ( bretwalda ) of Ken
## [doc0552] ilan July – Totila , |king | of Ostrogoths Decemb
## [doc0552]    Teia becomes last |king | of Ostrogoths in Ita
## [doc0552] : The Lombards under |King | Audoin defeat Gepids
## [doc0553] kic Khaganate Teia , |king | of Ostrogoths [ ]   
## [doc0553]  Mons Lactarius :[ ] |King | Teia secretly marche
## [doc0553]                      |King |
## [doc0553]            Gelimer , |king | of Vandals and Alans
## [doc0553] te unknown Gelimer , |king | of Vandals and Alans
## [doc0554]  ] March - Agila I , |king | of Visigoths [ ] exa
## [doc0554]  general [ ] Seong , |king | of Baekje ( Korea ) 
## [doc0554]       Wideok becomes |king | of Korean kingdom of
## [doc0554]  Mundhir succeeds as |king | of Lakhmids .       
## [doc0554] nagild is crowned as |king | of Visigoths and suc
## [doc0555]         Theudebald , |king | of Austrasia [ ]    
## [doc0555] Erb of Gwent , Welsh |king | [ ]                 
## [doc0555] tober - Gubazes II , |king | of Lazica ( Georgia 
## [doc0555]                      |King | Erb of Gwent ( in So
## [doc0555]                      |King | Gubazes             
## [doc0555]         Theudebald , |king | of Austrasia [ ]    
## [doc0555]                      |King | Chlothar            
## [doc0555] Erb of Gwent , Welsh |king | [ ]                 
## [doc0556]                      |King | Khosrau             
## [doc0556]    Echu Tirmcharna , |king | of Connacht ( Irelan
## [doc0556]                      |King | Chlothar            
## [doc0556]                      |King | Cynric and his son C
## [doc0557]                      |King | Chlothar            
## [doc0558] rán mac Domangairt , |king | of Dál Riata Jing Di
## [doc0558] ber – Childebert I , |king | of Franks [ ]       
## [doc0558]       [ ] December – |King | Chlothar I reunites 
## [doc0558] mac Comgaill becomes |king | of Dál Riata , a Gae
## [doc0559]         Reccared I , |king | of Visigoths ( d. ) 
## [doc0559] ds his father Ida as |king | of Bernicia ( North 
## [doc0559]                Ida , |king | of Bernicia ( approx
## [doc0560] his father Cynric as |king | of Wessex ( approxim
## [doc0560] p and saint Glappa , |king | of Bernicia ( approx
## [doc0560] after his death , as |king | of Lombards .       
## [doc0560]          Thurisind , |king | of Gepids ( approxim
## [doc0560]         Ælla becomes |king | of Deira ( according
## [doc0560] ap Cado abdicates as |king | of Dumnonia ( South 
## [doc0560] is brother Glappa as |king | of Bernicia ( approx
## [doc0560] op of Éauze Audoin , |king | of Lombards ( approx
## [doc0561]         Chlothar I , |king | of Franks Aregund , 
## [doc0561]           November – |King | Chlothar I ( Old ) d
## [doc0562]                      |King |
## [doc0562]  Silla , by order of |king | Jinheung , wages war
## [doc0562]  Year Peace Treaty , |King | Khosrau I recognises
## [doc0563]  d. ) Chindasuinth , |king | of Visigoths ( d. ) 
## [doc0565] pts between Alboin , |king | of Lombards , and Ki
## [doc0565]            Sisebut , |king | of Visigoths ( appro
## [doc0566]                      |King | Alboin of Lombards m
## [doc0566] ther Pulakeshin I as |king | of Chalukya dynasty 
## [doc0566] neral Pulakeshin I , |king | of Chalukya dynasty 
## [doc0567]        Charibert I , |king | of Franks [ ]       
## [doc0567]                      |King | Charibert I dies wit
## [doc0567] xandria Athanagild , |king | of Visigoths [ ]    
## [doc0567]         Sigebert I , |king | of Austrasia , marri
## [doc0567]              Cissa , |king | of South Saxons Cuni
## [doc0568]  his brother Adda as |king | of Bernicia ( modern
## [doc0568]         Sigebert I , |king | of Austrasia , repel
## [doc0568] ynasty ( d. ) Adda , |king | of Bernicia ( approx
## [doc0569] Harith V and becomes |king | of Ghassanids .     
## [doc0569] Harith ibn Jabalah , |king | of Ghassanids Peter 
## [doc0570] te ) Childebert II , |king | of Austrasia ( d. ) 
## [doc0571]            Liuva I , |king | of Visigoths ( or ) 
## [doc0571] Anglo - Saxons under |King | Cuthwulf fight again
## [doc0571]  Wuffa becomes first |king | of East Anglia , as 
## [doc0571]  The Visigoths under |King | Liuvigild invade Byz
## [doc0572]            Liuva I , |king | of Visigoths ( or ) 
## [doc0572]      June – Alboin , |king | of Lombards , is mur
## [doc0572]  brother Æthelric as |king | of Bernicia ( southe
## [doc0572]  of Pavia ( –572 ) : |King | Alboin captures Tici
## [doc0572] sman June – Alboin , |king | of Lombards Æthelric
## [doc0573]                      |King | Cleph completes Lomb
## [doc0573] p Ceidio , Brythonic |king | Narses , Byzantine g
## [doc0573]                  [ ] |King | Sigibert            
## [doc0574]  The Visigoths under |King | Liuvigild invade Can
## [doc0574] ope John III Cleph , |king | of Lombards ( or )  
## [doc0574]                      |King | Cleph is murdered af
## [doc0574] onall mac Comgaill , |king | of Dál Riata [ ] Xua
## [doc0574]  mac Gabráin becomes |king | of Dál Riata ( Scotl
## [doc0575] he is proclaimed new |king | of Neustria by noble
## [doc0575]     Áed mac Echach , |king | of Connacht ( Irelan
## [doc0575] ction from Guntram , |king | of Burgundy .       
## [doc0575] aganate Sigebert I , |king | of Austrasia ( appro
## [doc0575] father Sigibert I as |king | of Austrasia .      
## [doc0575] f Druim Cett : Irish |kings| discuss relationship
## [doc0575]  The Visigoths under |King | Liuvigild invade Sue
## [doc0576]        Jinji becomes |king | of Korean kingdom of
## [doc0576]  The Visigoths under |King | Liuvigild establish 
## [doc0578] nasty ( b. ) Wuffa , |king | of East Anglia ( app
## [doc0579]  , son of Visigothic |king | Liuvigild , marries 
## [doc0579] nedict I Khosrau I , |king | of Persian Empire Th
## [doc0579] brother Theodoric as |king | of Bernicia ( Scotla
## [doc0579] izd IV , who becomes |king | of Persian Empire . 
## [doc0579]    Jinpyeong becomes |king | of Korean kingdom of
## [doc0579]                      |King | Khosrau             
## [doc0579] evied by Merovingian |king | Chilperic I of Neust
## [doc0580]                      |King | Liuvigild calls for 
## [doc0580] mad Cadfan ap Iago , |king | of Gwynedd ( approxi
## [doc0580]  father Eormenric as |king | ( bretwalda ) of Ken
## [doc0580]    The Avars , under |King | ( khagan )          
## [doc0580] ate ) Bacurius III , |king | of Iberia ( Georgia 
## [doc0581]     He becomes first |king | of Deira ( according
## [doc0582]  The Visigoths under |King | Liuvigild capture ci
## [doc0583] ad ( d. ) Liuva II , |king | of Visigoths ( d. ) 
## [doc0583]               Miro , |king | of Suevi ( approxima
## [doc0583] s his father Miro as |king | of Suevi ( Hispania 
## [doc0583]                      |King | Liuvigild lays siege
## [doc0584]  The Visigoths under |King | Liuvigild capture ci
## [doc0584]                      |King | Chilperic           
## [doc0584] tle of Fethanleigh : |King | Ceawlin of Wessex is
## [doc0584] ggles with Guntram , |king | of Burgundy , and he
## [doc0584] date ) Chlothar II , |king | of Franks ( d. ) Yan
## [doc0584]                  [ ] |King | Eboric is deposed by
## [doc0584] te date – Bridei I , |king | of Picts            
## [doc0584]  ( son of Cleph ) as |king | and give him capital
## [doc0584] nd proclaims himself |king | ( approximate date )
## [doc0585]  Merovingian usurper |king | , and his followers 
## [doc0585]                      |King | Childebert II , age 
## [doc0585] win of Northumbria , |king | of Deira and Bernici
## [doc0585] rother Frithuwald as |king | of Bernicia ( approx
## [doc0585]  date ) Frithuwald , |king | of Bernicia ( approx
## [doc0585]  The Visigoths under |King | Liuvigild devastate 
## [doc0585]                      |King | Wideok of Baekje ( K
## [doc0585]       Creoda becomes |king | of Mercia ( accordin
## [doc0586]                      |King | Custennin of Dumnoni
## [doc0586]              April – |King | Liuvigild dies at To
## [doc0586]          Liuvigild , |king | of Visigoths Hermene
## [doc0586]      Theudebert II , |king | of Austrasia ( d. ) 
## [doc0586] hun Hir ap Maelgwn , |king | of Gwynedd Zhu Manyu
## [doc0587] is father Æscwine as |king | of Essex ( approxima
## [doc0587]  d. ) Theuderic II , |king | of Austrasia ( d. ) 
## [doc0587] h princess Æscwine , |king | of Essex ( approxima
## [doc0587]                      |King | Reccared I renounces
## [doc0587]                  [ ] |King | Guntram sends envoys
## [doc0588] hop and saint Ælla , |king | of Deira ( approxima
## [doc0588] s his father Ælla as |king | of Deira in Northern
## [doc0588] te date ) Suintila , |king | of Visigoths ( appro
## [doc0588]                      |King | Hormizd IV begins a 
## [doc0588] nd Burgundians under |King | Guntram and his neph
## [doc0589]                      |King | Guntram sends an exp
## [doc0589]                May – |King | Authari marries     
## [doc0589]                      |King | Childebert          
## [doc0590] s father Guaram I as |king | of Iberia ( Georgia 
## [doc0590] nd Burgundians under |King | Guntram invade Italy
## [doc0590]  father Eormenric as |king | ( bretwalda ) of Ken
## [doc0590] s legitimate Persian |king | , Khosrau II , as a 
## [doc0590] is son Khosrau II as |king | of Persian Empire . 
## [doc0590]     Kadungon becomes |king | of Pandyan Kingdom i
## [doc0590] Urien , as Brythonic |king | of Rheged in Norther
## [doc0590] d. ) Judicaël , high |king | of Domnonée ( approx
## [doc0590] te date ) Eanfrith , |king | of Bernicia ( d. ) H
## [doc0590]             Spring – |King | Hormizd IV dismisses
## [doc0590]          September – |King | Authari dies ( possi
## [doc0590]           Guaram I , |king | of Iberia ( Georgia 
## [doc0591] adwallon ap Cadfan , |king | of Gwynedd ( approxi
## [doc0591] II is reinstalled as |king | of Persian Empire . 
## [doc0591]           He becomes |king | of Lombards , on adv
## [doc0592] eawlin is deposed as |king | of West Saxons .    
## [doc0592]  January – Guntram , |king | of Burgundy Faroald 
## [doc0592]            January – |King | Guntram , age , dies
## [doc0592]           He becomes |king | of Wessex ( accordin
## [doc0593]             Creoda , |king | of Mercia ( approxim
## [doc0593] ia succeeds Hussa as |king | of Bernicia ( Scotla
## [doc0593] mad ( d. ) Ceawlin , |king | of Wessex ( approxim
## [doc0593] his father Creoda as |king | of Mercia ( approxim
## [doc0595] aint Childebert II , |king | of Austrasia ( b. ) 
## [doc0595]  Susthitavarman , as |king | of Varman dynasty in
## [doc0595]                      |King | Dynod               
## [doc0595]                      |King | Childebert II dies ;
## [doc0597]               Ceol , |king | of Wessex ( England 
## [doc0597]  his brother Ceol as |king | of Wessex .         
## [doc0597] enainn mac Cairbre , |king | of Uí Maine ( or )  
## [doc0597]   Mangalesha becomes |king | of Chalukya Dynasty 
## [doc0597]                  The |King | 's School is founded
## [doc0597] tria Kirtivarman I , |king | of Chalukya Dynasty 
## [doc0598] Mwynfawr , Brythonic |king | of Hen Ogledd ( The 
## [doc0598]                      |King |
## [doc0598]          Hye becomes |king | of Korean kingdom of
## [doc0598]  Irish poet Wideok , |king | of Baekje ( Korea ) 
## [doc0599]         Beop becomes |king | of Korean kingdom of
## [doc0599] rch of Antioch Hye , |king | of Baekje ( Korea ) 
## [doc0599]      Rædwald becomes |king | ( bretwalda ) of Eas
## [doc0599]                      |King | Khosrau             
## [doc0600]                      |King | Chlothar II of Neust
## [doc0600]                      |King | Agilulf of Lombards 
## [doc0600]           Mu becomes |king | of Korean kingdom of
## [doc0600]        Aedh Buidhe , |king | of Uí Maine ( Irelan
## [doc0600] g to Ynglinga saga , |king | Ingvar of Sweden inv
## [doc0600] Songtsen becomes new |king | of Tibet ( approxima
## [doc0600]      Uatu mac Áedo , |king | of Connacht ( Irelan
## [doc0600]               Beop , |king | of Baekje ( Korea ) 
## [doc0601] ( d. ) Sigebert II , |king | of Austrasia and Bur
## [doc0601] father Reccared I as |king | of Visigoths .      
## [doc0601] of Metz Reccared I , |king | of Visigoths ( b. ) 
## [doc0602]  ( b. ) Nu'man III , |king | of Lakhmids Ariulf ,
## [doc0602]                      |King | Khosrau             
## [doc0602]           Adaloald , |king | of Lombards ( d. )  
## [doc0602] rn Iraq ) , and puts |king | Nu'man III to death 
## [doc0603] attle of Degsastan : |King | Æthelfrith of Northu
## [doc0603]  date ) Dagobert I , |king | of Franks ( d. ) Li 
## [doc0603]                      |King | Agilulf besieges Cre
## [doc0603] ish abbot Liuva II , |king | of Visigoths ( b.   
## [doc0603] Witteric becomes new |king | of Visigoths .      
## [doc0604]  Deira and kills its |king | , Æthelric. [ ]     
## [doc0604]  his father Sledd as |king | of Essex .          
## [doc0604]  Edwin , son of late |king | Æ lla of Deira ( pos
## [doc0604]           Æthelric , |king | of Deira ( approxima
## [doc0604]             Oswald , |king | ( bretwalda ) of Nor
## [doc0604]                      |King | Khosrau             
## [doc0605] ecognizes Agilulf as |king | of Lombards , and si
## [doc0605]                      |King | Æthelfrith annexes n
## [doc0605] ty ( d. ) Sisenand , |king | of Visigoths ( appro
## [doc0605]   Amshuvarma becomes |king | of Licchavi in Nepal
## [doc0606] trymen , and declare |king | orders Protadius ' d
## [doc0606]                      |King | Harsha of Thanesar e
## [doc0606] recorded independent |king | of Bengal .         
## [doc0606] ( Burgundy ) Pybba , |king | of Mercia ( approxim
## [doc0606] rl succeeds Pybba as |king | of Mercia ( English 
## [doc0607]                      |King | Ceolwulf of Wessex f
## [doc0607] ughter of Witteric , |king | of Visigoths .      
## [doc0608] Áedán mac Gabráin as |king | of Dál Riata ( moder
## [doc0608]                      |King | Khosrau             
## [doc0608]       Charibert II , |king | of Aquitaine ( appro
## [doc0610] rbonne , who becomes |king | of Visigoths in Hisp
## [doc0610]                      |King | Witteric is assassin
## [doc0610]           Witteric , |king | of Visigoths        
## [doc0610] mate date ) Ergica , |king | of Visigoths ( appro
## [doc0610] ther Cynan Garwyn as |king | of Powys ( Wales ) .
## [doc0610]                      |King | Theuderic           
## [doc0611]     Cynegils becomes |king | of West Saxons , or 
## [doc0611] te date ) Ceolwulf , |king | of Wessex ( approxim
## [doc0611]                      |King | Khosrau             
## [doc0612] K'ak ' Chan Yopaat , |king | ( ajaw ) of Copán ( 
## [doc0612] succeeds Gundemar as |king | of Visigoths .      
## [doc0612]      Theudebert II , |king | of Austrasia ( b. ) 
## [doc0612]                      |King | Theudebert II is def
## [doc0613] eneral Sigebert II , |king | of Austrasia Theuder
## [doc0613] age , of killing ten |kings| of Franks ( accordin
## [doc0613]                      |King | Theuderic           
## [doc0613]                      |King | Æthelfrith of Northu
## [doc0613] edric ap Custennin , |king | of Dumnonia ( Englan
## [doc0614]            October – |King | Chlothar II promulga
## [doc0614]  Battle of Bampton : |King | Cynegils of Wessex d
## [doc0615] nburga , daughter of |king | Cearl of Mercia ( ac
## [doc0615] glo - Saxons , under |King | Æthelfrith of Northu
## [doc0615] g of Ireland Pybba , |king | of Mercia ( approxim
## [doc0616]                      |King | Rædwald of East Angl
## [doc0616] tember – Javanshir , |king | of Caucasian Albania
## [doc0616]         Æthelberht , |king | ( bretwalda ) of Ken
## [doc0616] er Iago ap Beli , as |king | of Gwynedd ( Wales )
## [doc0616]                      |King | Sæberht of Essex die
## [doc0616] r Agilulf as Lombard |king | of Italy .          
## [doc0616]             Sæbert , |king | of Essex ( approxima
## [doc0616]                      |King | Æthelfrith is killed
## [doc0616] istian Anglo - Saxon |king | , dies in Kent after
## [doc0616]         Nechtan II , |king | of Picts ( approxima
## [doc0616]                      |King |
## [doc0616] ld installs Edwin as |king | of Northumbria , eff
## [doc0617]    Sigeberht becomes |king | of Essex , after his
## [doc0617]             Sexred , |king | of Essex ( approxima
## [doc0617]                      |King | Edwin of Northumbria
## [doc0617]             Sæward , |king | of Essex ( approxima
## [doc0618]  dynasty Yeongyang , |king | of Goguryeo ( Korea 
## [doc0618] ngen mac Áedo Duib , |king | of Munster ( Ireland
## [doc0618]     Namri Songtsen , |king | of Tibet ( approxima
## [doc0619]                      |King | Khosrow             
## [doc0620]                      |King | Khosrau II captures 
## [doc0620] ui dynasty Sisebut , |king | of Visigoths ( or ) 
## [doc0620]                      |King | Pulakeshin          
## [doc0621]       Ardashir III , |king | of Persian Empire ( 
## [doc0621] ynasty Reccared II , |king | of Visigoths Sisebut
## [doc0621] and regent , becomes |king | of Visigothic Kingdo
## [doc0622] olmán mac Cobthaig , |king | of Connacht ( Irelan
## [doc0623] om Austrasians for a |king | of own .            
## [doc0623] erchant , is elected |king | of Slavs in Moravia 
## [doc0623]                  [ ] |King | Clothar             
## [doc0624] ui dynasty Rædwald , |king | of East Anglia ( app
## [doc0624]  The Visigoths under |King | Suintila recapture B
## [doc0624]  father Rædwald , as |king | ( bretwalda ) of ind
## [doc0624] d. ) Yazdegerd III , |king | of Persian Empire ( 
## [doc0624]                      |King | Khosrow             
## [doc0625]                      |King | Edwin of Northumbria
## [doc0625]          Œthelwald , |king | of Deira ( approxima
## [doc0625] bah Cadfan ap Iago , |king | of Gwynedd Kaegi , W
## [doc0625]                      |King | Pulakeshin          
## [doc0625]                      |King | Cadfan of Gwynedd di
## [doc0625] udicaël becomes high |king | of Domnonée ( northe
## [doc0626]         [ ] Summer – |King | Khosrau             
## [doc0626] mate date ) Sexred , |king | of Essex ( approxima
## [doc0626] in - law Adaloald as |king | of Lombards , and af
## [doc0626]                      |King | Cadwallon is defeate
## [doc0626]  Imam ( d. ) Munmu , |king | of Silla ( d. ) Tenj
## [doc0626]                      |King | Edwin of Northumbria
## [doc0626]        Penda becomes |king | of Mercia ( approxim
## [doc0626]           Adaloald , |king | of Lombards ( approx
## [doc0627]                      |King | Eorpwald of East Ang
## [doc0627] nt Cathal mac Áedo , |king | of Cashel ( Ireland 
## [doc0627] a as first Christian |king | in northern England 
## [doc0627] lde , Frankish queen |King | Stephen I of Iberia 
## [doc0627]              April – |King | Edwin of Northumbria
## [doc0627]                      |King | Eorpwald of East Ang
## [doc0628] ruary – Khosrow II , |king | of Persian Empire Ap
## [doc0628] tle of Cirencester : |King | Penda of Mercia defe
## [doc0629] Battle of Fid Eoin : |King | Connad Cerr of Dál R
## [doc0629]      Eochaid Buide , |king | of Dál Riata [ ]    
## [doc0629]                      |King | Chlothar            
## [doc0629] Dagobert I , becomes |king | of Aquitaine ( South
## [doc0629]        Connad Cerr , |king | of Dál Riata ( Scotl
## [doc0629] ( d. ) Chlothar II , |king | of Franks Conall mac
## [doc0630]                      |King | Cadwallon ap Cadfan 
## [doc0630]                      |King | Penda of Mercia besi
## [doc0630]              April – |King | Ardashir III , age ,
## [doc0630]           Ricberht , |king | of East Anglia ( app
## [doc0630]         Shahrbaraz , |king | of Persian Empire Du
## [doc0630]              Yngling |King |
## [doc0630] or ( d. ) Alhfrith , |king | of Deira ( approxima
## [doc0630]                      |King | Ricberht of East Ang
## [doc0630] , daughter of former |king | Khosrow II .        
## [doc0631] idokht ( daughter of |king | Khosrau II ) succeed
## [doc0631]      The Slavs under |King | Samo defeat Austrasi
## [doc0631] inaed mac Luchtren , |king | of Picts Rayhana , s
## [doc0631]                  [ ] |King | Suintila is overthro
## [doc0631]                      |King | Edwin of Northumbria
## [doc0631] Sisenand becomes new |king | of Visigothic Kingdo
## [doc0631]                      |King | Dagobert            
## [doc0632] win of Northumbria , |king | of Deira and Bernici
## [doc0632]              April – |King | Charibert II is assa
## [doc0632]  age , ascends to as |king | ( shah ) of Persian 
## [doc0632] ril – Charibert II , |king | of Aquitaine June – 
## [doc0632] powerful Merovingian |king | in West .           
## [doc0633] s his uncle Edwin as |king | of Deira .          
## [doc0633]                      |King |
## [doc0633]                      |King | Edwin of Northumbria
## [doc0633]          Clovis II , |king | of Neustria and Burg
## [doc0634] m Caliph Cadwallon , |king | of Gwynedd ( Wales )
## [doc0634] rnicia , and becomes |king | of Northumbria .    
## [doc0634]          Sigeberht , |king | of East Anglia ( app
## [doc0634]                      |King | Dagobert            
## [doc0635]           The Breton |king | arrives with gifts ,
## [doc0635]                      |King | Meurig of Glywysing 
## [doc0635] nasty Gartnait III , |king | of Picts Wu Shihuo ,
## [doc0635]      Judicaël , high |king | of Domnonée ( Britta
## [doc0635]                      |King | Gartnait            
## [doc0636] nd scholar Arioald , |king | of Lombards Bahman J
## [doc0636]  succeeds Arioald as |king | of Lombards .       
## [doc0636] te date ) Sisenand , |king | of Visigoths Theodor
## [doc0636] y functions ) may be |king | of Visigothic Kingdo
## [doc0636] ts Cwichelm ( son of |king | Cynegils of Wessex )
## [doc0637]  Congal Cáech , high |king | of Dál nAraidi ( Ire
## [doc0637]                      |King | Songtsän Gampo build
## [doc0637] Battle of Mag Rath : |King | Oswald of Northumbri
## [doc0637]                      |King | Yazdegerd III flees 
## [doc0638]                      |King | Oswald and his North
## [doc0639] lann mac Áedo Duib , |king | of Munster ( Ireland
## [doc0639] er a - year reign as |king | of all Franks , in w
## [doc0639]  age ) , who becomes |king | of Neustria and Burg
## [doc0639] nuary – Dagobert I , |king | of Franks ( b. c. ) 
## [doc0640] ikesari Maravarman , |king | of Pandyan Empire ( 
## [doc0640]                      |King | Chintila dies of nat
## [doc0640]  Muhammed Chintila , |king | of Visigoths ( appro
## [doc0640]                      |King | Eadbald of Kent dies
## [doc0640]            Eadbald , |king | of Kent ( approximat
## [doc0641]                      |King | Bridei              
## [doc0641]    Uija becomes last |king | of Korean kingdom of
## [doc0641]  Italy ) Bridei II , |king | of Picts Emperor Con
## [doc0641] his half - brother , |King | Oswald ( approximate
## [doc0642]      Domnall Brecc , |king | of Dál Riata [ ]    
## [doc0642]             Oswald , |king | of Northumbria Octob
## [doc0642]          Áedo , high |king | of Ireland Flaochad 
## [doc0642]  - brother Oswald as |king | of Bernicia .       
## [doc0642] ttle of Maserfield : |King | Penda of Mercia defe
## [doc0642] king title of rex or |king | of Thuringia .      
## [doc0642]     He is proclaimed |king | by Visigothic nobili
## [doc0642] ueen Pulakeshin II , |king | of Chalukya ( India 
## [doc0643] which is attended by |kings| and of pilgrims .   
## [doc0643]  III , last Sassanid |king | of Persia , flees to
## [doc0643]                      |King | Rothari of Lombards 
## [doc0643]                      |King | Cynegils of Wessex d
## [doc0643] p of Metz Cynegils , |king | of Wessex ( approxim
## [doc0644] Austrasia ) Radulf , |king | of Thuringia ( appro
## [doc0644] Oswine , son of late |king | Osric of Deira , man
## [doc0645]           Æthelred , |king | of Mercia ( approxim
## [doc0645]           Would - be |king | Cadwaladr Fendigaid 
## [doc0645]                      |King | Cenwalh of Wessex is
## [doc0645] He flees to court of |king | Anna of East Anglia 
## [doc0648] apan ( d. ) Redbad , |king | of Frisia ( d. )    
## [doc0648]                      |King |
## [doc0648]                      |King | Cenwalh of Wessex re
## [doc0649] h mac Uatach , Irish |king | of Connacht ( murder
## [doc0649]            January – |King | Chindasuinth , at ur
## [doc0650]   The Mercians under |King | Penda move on East A
## [doc0650]                      |King | Oswiu of Bernicia se
## [doc0650]                      |King | Cloten of Dyfed ( So
## [doc0650] erchar mac Connaid , |king | of Dál Riata ( moder
## [doc0650] date ) Dagobert II , |king | of Austrasia ( appro
## [doc0651]    August – Oswine , |king | of Deira ( England )
## [doc0651]                      |King | Yazdegerd           
## [doc0651] ly ) Yazdegard III , |king | of Sassanid Empire A
## [doc0651]                      |King | Clovis              
## [doc0651]  his uncle Oswine as |king | of Deira , and allie
## [doc0651]                      |King | Oswiu of Bernicia de
## [doc0652] of Ravenna Rothari , |king | of Lombards Muir , W
## [doc0652]                      |King | Penda of Mercia inva
## [doc0652] y his son Rodoald as |king | of Lombards .       
## [doc0652]       Chlothar III , |king | of Neustria and Burg
## [doc0652]                      |King |
## [doc0653]                      |King |
## [doc0653]       Childeric II , |king | of Franks ( approxim
## [doc0653]                      |King | Penda of Mercia secu
## [doc0653]                      |King | Sigeberht I of Essex
## [doc0653] of Ravenna Rodoald , |king | of Lombards Romaric 
## [doc0653] eader Chindasuinth , |king | of Visigoths Marcán 
## [doc0653]                      |King | Rodoald is murdered 
## [doc0653] f Oswiu , is crowned |king | of Picts .          
## [doc0654]                      |King | Penda of Mercia defe
## [doc0654] te ) Theuderic III , |king | of Franks ( d. ) Jan
## [doc0654]  his brother Anna as |king | of East Anglia , and
## [doc0654]               Anna , |king | of East Anglia ( app
## [doc0654]       Muyeol becomes |king | of Korean kingdom of
## [doc0654]                      |King | Anna of East Anglia 
## [doc0654]                      |King | Recceswinth draws up
## [doc0655]                      |King | Vikramaditya        
## [doc0655] tablishes himself as |king | of Mercia , setting 
## [doc0655]          Æthelhere , |king | of East Anglia Novem
## [doc0656] ho makes his own son |king | , and exiles him to 
## [doc0656]          Cynddylan , |king | of Pengwern ( Wales 
## [doc0656]       Sigebert III , |king | of Austrasia ( or ) 
## [doc0656] Tang Dynasty Peada , |king | of Mercia ( Midlands
## [doc0656]           February – |King | Sigebert III of Aust
## [doc0656]                      |King | Oswiu of Northumbria
## [doc0656]  Crundmáel Erbuilc , |king | of Uí Ceinnselaig ( 
## [doc0656] lhfrith , as subject |king | in a united Northumb
## [doc0656]                      |King |
## [doc0657]           Ansprand , |king | of Lombards ( approx
## [doc0657]  , age , who becomes |king | of Neustria and Burg
## [doc0657] Childebert Adopted , |king | ( usurper ) of Austr
## [doc0657]         Talorgan I , |king | of Picts            
## [doc0657] posed by Clovis II , |king | of Neustria .       
## [doc0658]                      |King | Cenwalh and Wessex S
## [doc0658]          Clovis II , |king | of Neustria and Burg
## [doc0658]      Judicael , high |king | of Domnonée Samo , k
## [doc0658] ac Máele Coba , high |king | of Ireland Chu Suili
## [doc0658] ls Wulfhere ( son of |king | Penda ) as ruler of 
## [doc0659] Shia Imam Cædwalla , |king | of Wessex ( approxim
## [doc0660]                      |King | Conall Crandomna of 
## [doc0660]       Sigeberht II , |king | of Essex ( approxima
## [doc0660]                      |King | Cenwalh of Wessex be
## [doc0660]     Swithelm becomes |king | of Essex , with Swit
## [doc0660]                      |King | Sigeberht           
## [doc0660] ignon Sigebert III , |king | of Austrasia ( or ) 
## [doc0660] ) Conall Crandomna , |king | of Dál Riata ( Scotl
## [doc0661]        Æthelwealh as |king | of Sussex , and     
## [doc0661]  Battle of Posbury : |King | Cenwalh of Wessex in
## [doc0661]                      |King | Munmu becomes ruler 
## [doc0661]          Aripert I , |king | of Lombards Cenberht
## [doc0661]                      |King | Wulfhere of Mercia a
## [doc0661]                      |King | Chlothar III of Neus
## [doc0661] fwine , Northumbrian |king | of Deira ( k. )     
## [doc0662]                      |King | Swithelm of Essex is
## [doc0662]                      |King | Chlothar III gives A
## [doc0662] Byzantine Godepert , |king | of Lombards Rumwold 
## [doc0662]                      |King |
## [doc0662] riors and proclaimed |king | of Austrasia .      
## [doc0663]                      |King | Oswiu of Northumbria
## [doc0663] date ) Gartnait IV , |king | of Picts ( approxima
## [doc0664]         Æthelwald as |king | of East Anglia .    
## [doc0664]    Synod of Whitby : |King | Oswiu of Northumbria
## [doc0664] July – Eorcenberht , |king | of Kent October – Ce
## [doc0664]                      |King | Ealdwulf succeeds   
## [doc0664]                      |King | Swithelm of Essex di
## [doc0667] The Lombards , under |King | Grimoald I , destroy
## [doc0667]                      |King | Javanshir of Caucasi
## [doc0669]                      |King | Ecgberht of Kent los
## [doc0670]          Javanshir , |king | of Caucasian Albania
## [doc0670] e ) Childebert III , |king | of Franks ( approxim
## [doc0670]           Merewalh , |king | of Magonsæte ( appro
## [doc0670]  son Ælfwine becomes |king | of Deira .          
## [doc0671]     He deposes young |king | , and becomes new ru
## [doc0671]  date ) Grimoald I , |king | of Lombards         
## [doc0671]                      |King | Ecgfrith of Northumb
## [doc0672] ceeds Recceswinth as |king | of Visigoths .      
## [doc0672] ate ) Chilperic II , |king | of Franks ( approxim
## [doc0672]            Cenwalh , |king | of Wessex ( approxim
## [doc0672]                      |King | Cenwalh of Wessex di
## [doc0673] ngart mac Domnaill , |king | of Dál Riata ( Scotl
## [doc0673] ilderic II to become |king | in Neustria and Burg
## [doc0673]                      |King | Domangart mac Domnai
## [doc0673] s daughter Osgyth to |King | Sighere of Essex bre
## [doc0673]                      |King | Frithuwold of Surrey
## [doc0673]                      |King | Chlothar III of Neus
## [doc0673]  ) July – Ecgberht , |king | of Kent August –    
## [doc0673]          September – |King | Wamba of Visigoths p
## [doc0673]               July – |King | Ecgberht I of Kent d
## [doc0673]       Chlothar III , |king | of Neustria and Burg
## [doc0673] ther , becoming sole |king | of Frankish Kingdom 
## [doc0674]                      |King | Ecgfrith of Northumb
## [doc0674]                      |King |
## [doc0674]                      |King | Vikramaditya I of Ch
## [doc0674]              Poppo , |king | ( duke ) of Frisia (
## [doc0675]  III , is proclaimed |king | of Austrasia by Aust
## [doc0675]                      |King | Childeric           
## [doc0675] queen Childeric II , |king | of Franks Germanus o
## [doc0675]                      |King |
## [doc0675]              April – |King |
## [doc0676] ntwine , son of late |king | Cynegils .          
## [doc0676]                      |King |
## [doc0676] ert II , son of late |king | Sigibert III , becom
## [doc0676] eodatus II Æscwine , |king | of Wessex Clovis III
## [doc0676]                      |King |
## [doc0677] e date ) Clovis IV , |King | of Franks ( d. ) Mu<U+1E25>
## [doc0678]            Ælfwine , |king | of Deira ( approxima
## [doc0678]                      |King |
## [doc0678] Merovingian Frankish |king | and son of Theuderic
## [doc0679]                      |King |
## [doc0679] mber – Dagobert II , |king | of Austrasia Ælfwine
## [doc0680]                      |King | Merewalh of Magonsæt
## [doc0680] mad Vikramaditya I , |king | of Chalukya ( India 
## [doc0680]                      |King | Wamba is deposed aft
## [doc0680] anuary – Javanshir , |king | of Caucasian Albania
## [doc0680]                  [ ] |King | Cædwalla of Wessex b
## [doc0680]                      |King | Perctarit makes his 
## [doc0681]                      |King | Ecgfrith of Northumb
## [doc0681]                      |King |
## [doc0681]       Jayavarman I , |king | of Chenla ( Cambodia
## [doc0681]                      |King | Erwig of Visigoths i
## [doc0681]       Sinmun becomes |king | of Korean kingdom of
## [doc0682]         Bridei III , |King | of Picts , campaigns
## [doc0682]                      |King | Ecgfrith requests Be
## [doc0682]                      |King | Erwig of Visigoths c
## [doc0682]          Cadwaladr , |king | of Gwynedd ( Wales )
## [doc0682]             Bojang , |king | of Goguryeo ( Korea 
## [doc0682]  Fáelad mac Colgan , |king | of Connacht ( Irelan
## [doc0683]                      |King |
## [doc0683]   Dúnchad Muirisci , |king | of Connacht ( Irelan
## [doc0683] and abbess Anseung , |king | of Goguryeo ( Korea 
## [doc0683]            Sighere , |king | of Essex Uqba ibn Na
## [doc0684] ( d. ) Adarnase II , |king | of Iberia ( approxim
## [doc0684]                      |King | Ecgfrith of Northumb
## [doc0685]          Hlothhere , |king | of Kent Liu Rengui ,
## [doc0685]                      |King | Centwine of Wessex d
## [doc0685]     May – Ecgfrith , |king | of Northumbria Æthel
## [doc0685] in : The Picts under |King | Bridei III revolt ag
## [doc0685]  and Scottish help ) |king | of Northumbria .    
## [doc0685] ty ( d. ) Pelagius , |king | of Asturias ( approx
## [doc0685]                      |King | Eadric revolts again
## [doc0686]                      |King | Eadric is expelled ,
## [doc0686]                      |King | Cædwalla of Wessex e
## [doc0686]             Andhun , |king | of Sussex Arwald , k
## [doc0686]            Berthun , |king | of Sussex Eadric , k
## [doc0687]   Battle of Tertry : |King | Theuderic III of Neu
## [doc0687]                      |King |
## [doc0687] sty ( d. ) Wittiza , |king | of Visigoths ( appro
## [doc0687]                      |King | Erwig dies after a -
## [doc0687]        His brother , |King | Cædwalla of Wessex ,
## [doc0688]                      |King |
## [doc0688] y ( second cousin of |king | Eadric ) , as king o
## [doc0688]                      |King | Caedwalla of Wessex 
## [doc0688] l Dúin mac Conaill , |king | of Dál Riata ( Scotl
## [doc0688]                      |King | Perctarit of Lombard
## [doc0689] ) April – Cædwalla , |king | of Wessex July –    
## [doc0689] : The Frisians under |King | Radbod are defeated 
## [doc0689] ang Dynasty Alahis , |king | ( usurper ) of Lomba
## [doc0690]  Molwynog ap Idwal , |king | of Gwynedd ( approxi
## [doc0690]                      |King |
## [doc0690] ed , brother of late |king | Eadric of Kent , aft
## [doc0690]             Oswine , |king | of Kent ( approximat
## [doc0691] eallach mac Flainn , |king | of Uí Maine ( Irelan
## [doc0691]                      |King | Aldfrith seizes many
## [doc0691]                      |King | Theuderic III dies a
## [doc0691]      Theuderic III , |king | of Franks ( b. )    
## [doc0692]                      |King |
## [doc0693]          Alfonso I , |king | of Asturias ( approx
## [doc0693]         Bridei III , |king | of Picts Earconwald 
## [doc0693]                      |King |
## [doc0693]  as apparent joint - |kings| :                   
## [doc0693]                      |King |
## [doc0693]             Oshere , |king | of Hwicce ( Mercia )
## [doc0694]                      |King |
## [doc0694]                      |King | Sæbbi of Essex abdic
## [doc0694]           November – |King | Ergica of Visigoths 
## [doc0694]            Coenred , |king | of Dorset ( approxim
## [doc0694] e date ) Clovis IV , |King | of Franks ( b. )    
## [doc0695]          September – |King | Wihtred of Kent , wh
## [doc0695]                      |King | Aldfrith of Northumb
## [doc0695] ler ( ajaw ) Sæbbi , |king | of Kent ( approximat
## [doc0695] ds Clovis IV as sole |king | of Franks .         
## [doc0696] rince Domnall Donn , |king | of Dál Riata ( Scotl
## [doc0697] sty ( d. ) Osred I , |king | of Northumbria ( app
## [doc0697]             Radbod , |king | of Frisians , retrea
## [doc0698]  ua Dúnchado becomes |king | of Dál Riata ( Scotl
## [doc0698]       Dagobert III , |king | of Franks ( d. ) Sha
## [doc0698] llach mac Ferchair , |king | of Dál Riata ( Scotl
## [doc0700]                      |King | Geraint of Dumnonia 
## [doc0700] sh abbot , convinces |kings| to adopt Cáin Adomná
## [doc0700]                      |King |
## [doc0700]                      |King | Cunipert dies after 
## [doc0700]  princess Cunipert , |king | of Lombards Di Renji
## [doc0700] namail ua Dúnchado , |king | of Dál Riata Godeber
## [doc0701] y his son Wittiza as |king | of Visigoths ( appro
## [doc0701]                      |King | Egica dies , possibl
## [doc0701] arian Empire Egica , |king | of Visigoths ( or ) 
## [doc0701] Raginpert , usurping |king | of Lombards Yeon Nam
## [doc0702]           Liutpert , |king | of Lombards Muiredac
## [doc0703] hop of Sens Ergica , |king | of Visigoths ( or ) 
## [doc0703]                 High |King | Loingsech mac Óengus
## [doc0703]                      |King | Aripert II of Lombar
## [doc0703]  mac Óengusso , high |king | of Ireland Thrasimun
## [doc0704] ed ) , a son of late |king | Wulfhere , who becom
## [doc0704] ecember – Aldfrith , |king | of Northumbria ( or 
## [doc0704]           December – |King | Aldfrith of Northumb
## [doc0705]           He becomes |king | at age of nine ; gov
## [doc0705] comes estranged from |kings| Sigeheard and Swæfre
## [doc0705]                      |King | Geraint of Dumnonia 
## [doc0705]                      |King |
## [doc0705] lach mac Rogallaig , |king | of Connacht ( Irelan
## [doc0705] te ) Varaz Trdat I , |king | of Caucasian Albania
## [doc0705] ty ( b. ) Aldfrith , |king | of Northumbria ( or 
## [doc0706] aliph ( d. ) Eoppa , |king | of Wessex ( d. ) Fuj
## [doc0709]  [ ] Ceolred becomes |king | of Mercia , after hi
## [doc0709]  ) Yaxun B'alam IV , |king | of Yaxchilan ( Mexic
## [doc0710]     Roderick becomes |king | of Visigoths , but V
## [doc0710] Sussex fight against |King | Geraint of Dumnonia 
## [doc0710] ikesari Maravarman , |king | of Pandyan Empire ( 
## [doc0710]            Wittiza , |king | of Visigoths ( appro
## [doc0711]              April – |King | Childebert III dies 
## [doc0711]        Seachnasach , |king | of Uí Maine ( Irelan
## [doc0711]                      |King | Aripert II , who usu
## [doc0711] l – Childebert III , |king | of Franks November –
## [doc0712] Cherca mac Fáeláin , |king | of Osraige ( Ireland
## [doc0712] ( b. ) Idwal Iwrch , |king | of Gwynedd ( Wales )
## [doc0712]                      |King | Dae                 
## [doc0712] ( b. or ) Ansprand , |king | of Lombards Aripert 
## [doc0712]           February – |King | Ansprand dies , and 
## [doc0713]  Muhammad Ealdwulf , |king | of East Anglia Huine
## [doc0713]                      |King | Ealdwulf of East Ang
## [doc0714] ( d. ) Pepin Short , |king | of Franks ( d. ) Sep
## [doc0714]                      |King | Radbod forces bishop
## [doc0714] and proclaim Ardo as |king | .                   
## [doc0715] rince Dagobert III , |king | of Franks ( b. )    
## [doc0715]                      |King | Nechtan mac Der-Ilei
## [doc0715] of Childeric II , as |king | of Neustria .       
## [doc0716] taneously , Radbod , |king | ( or duke ) of Frisi
## [doc0716]            Osred I , |king | of Northumbria Qapag
## [doc0716] axon abbot Ceolred , |king | of Mercia Coenred , 
## [doc0716]                  [ ] |King | Osred I of Northumbr
## [doc0717] chtan mac Der-Ilei , |king | of Picts , expels mo
## [doc0717] roclaims Clotaire IV |king | of Austrasia in oppo
## [doc0717]      Childeric III , |king | of Franks ( d. ) Eli
## [doc0717] hes against Radbod , |king | ( or duke ) of Frisi
## [doc0718] layo ) is proclaimed |king | ( caudillo ) , and d
## [doc0718]  - brother , of late |king | Osred I .           
## [doc0718] gun ( d. ) Coenred , |king | of Northumbria Cuthb
## [doc0718]                      |King | Chilperic           
## [doc0718]                      |King | Liutprand of Lombard
## [doc0718]                      |King | Coenred of Northumbr
## [doc0719] mperor Chlothar IV , |king | of Austrasia ( appro
## [doc0719] by Charles Martel as |king | ( roi fainéant ) of 
## [doc0719] mate date ) Radbod , |king | of Frisians Tassilo 
## [doc0719] tel defeats Redbad , |King | of Frisians .       
## [doc0720]                      |King | Ardo is killed , and
## [doc0720] ximate date ) Ardo , |king | of Visigoths ( or ) 
## [doc0720]                  [ ] |King |
## [doc0721]                      |King |
## [doc0721]           February – |King | Chilperic II dies at
## [doc0721] ary – Chilperic II , |king | of Franks May – John
## [doc0721] , daughter of former |king | Theuderic III , and 
## [doc0721] ximate date ) Ardo , |king | of Visigoths ( or ) 
## [doc0722]                      |King |
## [doc0722]                      |King | K'inich Ahkal Mo'   
## [doc0722]           Fruela I , |king | of Asturias ( approx
## [doc0724]  Chan Yopaat becomes |king | ( ajaw ) of Maya cit
## [doc0725]              April – |King | Wihtred of Kent dies
## [doc0725]                      |King | Liutprand puts Corsi
## [doc0725]  ) April – Wihtred , |king | of Kent Ealdbert , p
## [doc0726]                      |King |
## [doc0726] ch ( a son of former |king | Eochaid mac Domangai
## [doc0726] elbaig is deposed as |king | of Dál Riata ( Scotl
## [doc0727] chad mac Brain Mut , |king | of Leinster ( Irelan
## [doc0727]                      |King | Liutprand takes adva
## [doc0728] nchad mac Murchado , |king | of Leinster ( Irelan
## [doc0728] - Basri , Arab Ine , |king | of Wessex ( approxim
## [doc0728]                      |King | Liutprand of Lombard
## [doc0728] omnall mac Cellaig , |king | of Connacht ( Irelan
## [doc0729]                      |King | Osric of Northumbria
## [doc0729] ( d. ) May – Osric , |king | of Northumbria Ecgbe
## [doc0730] ynasty ( d. ) Offa , |king | of Mercia ( approxim
## [doc0730]                      |King | Liutprand contracts 
## [doc0730] lbach mac Ferchair , |king | of Dál Riata Tiberiu
## [doc0731]                      |King | Ceolwulf of Northumb
## [doc0731]                      |King |
## [doc0732]         [ ] Autumn – |King | Ceolwulf of Northumb
## [doc0732] chtan mac Der-Ilei , |king | of Picts [ ]        
## [doc0733] ochaid mac Echdach , |king | of Dál Riata ( moder
## [doc0734] n army is beaten and |King | Poppo is killed .   
## [doc0735] ) besiege Pelagius , |king | of Asturias , in upp
## [doc0735] thal mac Muiredaig , |king | of Connacht ( Irelan
## [doc0735]                  [ ] |King | Liutprand of Lombard
## [doc0735] lach mac Fáelchair , |king | of Osraige ( Ireland
## [doc0736]                      |King | Óengus I of Picts in
## [doc0736] ch mac Ainbcellaig , |king | of Dál Riata Yamabe 
## [doc0736]                      |King | Æthelbald of Mercia 
## [doc0736] med Rex Britanniae ( |king | of Britain ) . [ ] [
## [doc0737]                 Mu , |king | of Balhae ( Korea ) 
## [doc0737]                      |King | Ceolwulf of Northumb
## [doc0737]       Theuderic IV , |king | of Franks Dragon Bal
## [doc0737]                      |King | Pelagius of Asturias
## [doc0737] of Venice Pelagius , |king | of Asturias ( Spain 
## [doc0737] th of Theuderic IV , |king | of Franks , is left 
## [doc0737]                      |King | Ongendus of Danes re
## [doc0738] áelán mac Murchado , |king | of Leinster Maslama 
## [doc0738]    Áed mac Colggen , |king | of Uí Cheinnselaig (
## [doc0738]                      |King | Swæfberht of Essex d
## [doc0738]  mac Fithcheallach , |king | of Uí Maine ( Irelan
## [doc0739]  missionary Favila , |king | of Asturias ( Spain 
## [doc0739]                      |King | Favila of Asturias d
## [doc0740]                      |King |
## [doc0740] son of late usurping |king | Eadwulf I . [ ] [ ] 
## [doc0740] t Rhain ap Cadwgan , |king | of Dyfed and Brychei
## [doc0740]                      |King | Eadberht of Northumb
## [doc0740]                      |King |
## [doc0740]  Wessex Æthelheard , |king | of Wessex Æthelwold 
## [doc0740]                      |King | Liutprand of Lombard
## [doc0740]           Aurelius , |king | of Asturias ( approx
## [doc0741] gdom has had no true |king | since death of Theud
## [doc0742] athal mac Finguine , |king | of Munster ( Ireland
## [doc0742]                      |King | Liutprand of Lombard
## [doc0742]        Charlemagne , |king | and emperor of Frank
## [doc0742] lb mac Indrechtaig , |king | of Connacht ( Irelan
## [doc0743]                      |King | Æthelbald of Mercia 
## [doc0743]  as last Merovingian |king | , ( until his death 
## [doc0744] njo and captures its |king | , Yax Mayuy Chan Cha
## [doc0744]                      |King | Liutprand of Lombard
## [doc0744]  duke of Friuli ) as |king | of Lombards , who ma
## [doc0744] se poet Hildeprand , |king | of Lombards Huoching
## [doc0745]  Cathal Maenmaighe , |king | of Uí Maine ( Irelan
## [doc0746]                      |King | Ratchis codifies Lom
## [doc0746] d , grandson of late |king | Sigeheard .         
## [doc0746]                      |King | Saelred of Essex die
## [doc0746]            Saelred , |king | of Essex            
## [doc0746] imalayas ) , to cure |king | of Bumthang ( approx
## [doc0747] date ) Charlemagne , |king | and emperor of Frank
## [doc0748]                      |King | Æthelbert II of Kent
## [doc0748] date ) Charlemagne , |king | and emperor of Frank
## [doc0748] tach mac Dungalaig , |king | of Brega ( Ireland )
## [doc0748] sh abbot Eadbert I , |king | of Kent ( approximat
## [doc0749] other , Ratchis , as |king | of Lombards and marr
## [doc0749]                      |King | Ælfwald of East Angl
## [doc0749] ilello hui Daimine , |king | of Uí Maine ( Irelan
## [doc0749]                      |King | Ratchis of Lombards 
## [doc0749]                      |King | Æthelbald of Mercia 
## [doc0749]                      |King |
## [doc0749] and priest Ælfwald , |king | of East Anglia Abdal
## [doc0750] o Róin , Dál Fiatach |king | of Ulaid Burchard , 
## [doc0750]                      |King | Alfonso I of Asturia
## [doc0750]                      |King | Eadberht does in ord
## [doc0750] hclyde Britons under |King | Teudebur defeat Prin
## [doc0750] e date ) Bermudo I , |king | of Asturias ( approx
## [doc0750] htach mac Dluthach , |king | of Uí Maine ( Irelan
## [doc0750]                      |King | Eadberht of Northumb
## [doc0751] proclaims himself as |king | of Franks with suppo
## [doc0751] rgus mac Fogartaig , |king | of Brega ( Ireland )
## [doc0751] ces last Merovingian |king | Childeric III to ret
## [doc0751]  June – Carloman I , |king | of Franks ( d. ) Ada
## [doc0751]                  [ ] |King | Aistulf of Lombards 
## [doc0752]  joint invasion , by |kings| Óengus I of Picts an
## [doc0752]                      |King | Pepin III ( Short ) 
## [doc0752]           Teudebur , |king | of Alt Clut ( Scotla
## [doc0752] un B'alam IV becomes |king | ( ajaw ) of Maya cit
## [doc0752]  Battle of Burford : |King | Cuthred of Wessex cl
## [doc0752]                  [ ] |King | Teudebur of Alt Clut
## [doc0754] pin III ( Short ) as |king | of Franks , at Basil
## [doc0754] te ) Childeric III , |king | of Franks ( approxim
## [doc0755]  Elisedd ap Gwylog , |king | of Powys ( Wales ) S
## [doc0756] ded by Desiderius as |king | of Lombards .       
## [doc0756] orggus mac Cellaig , |king | of Connacht ( Irelan
## [doc0756] , duke of Friuli and |king | of Lombards Cuthred 
## [doc0756]                      |King | Aistulf of Lombards 
## [doc0756] f Northumbria attack |King | Dumnagual III of Str
## [doc0756]                      |King | Cuthred of Wessex di
## [doc0757]                      |King | Sigeberht of Wessex 
## [doc0757] c Church Æthelbald , |king | of Mercia Alfonso I 
## [doc0757] official Sigeberht , |king | of Wessex Suibhne of
## [doc0757]                      |King |
## [doc0757]                      |King | Alfonso I ( Catholic
## [doc0758] asty ( d. ) Beorna , |king | of East Anglia ( app
## [doc0758] igeric , son of late |king | Saelred ( see ) .   
## [doc0758]                      |King | Beorna of East Angli
## [doc0758]                      |King | Desiderius defeats h
## [doc0758]                      |King | Swithred of Essex di
## [doc0758]                      |King | Cynewulf of Wessex r
## [doc0758] g Dynasty Swithred , |king | of Essex            
## [doc0758]            Hyegong , |king | of Silla ( Korea ) (
## [doc0758]                      |King | Eadberht of Northumb
## [doc0758] , descendant of late |king | Rædwald , apparently
## [doc0759]             Oswulf , |king | of Northumbria Edbur
## [doc0759]               July – |King | Oswulf of Northumbri
## [doc0759]         Alfonso II , |king | of Asturias ( d. ) A
## [doc0759] egicide , is crowned |king | of Norhumbria .     
## [doc0759] a descendant of late |king | Oswine of Deira .   
## [doc0760]             Frankish |King | Pepin III ( Short ) 
## [doc0760]      Dumnagual III , |king | of Alt Clut ( Scotla
## [doc0760] edach mac Murchado , |king | of Leinster ( Irelan
## [doc0761]           Óengus I , |king | of Picts [ ]        
## [doc0761]  brother Óengus I as |king | of Picts ( modern Sc
## [doc0761] nngal mac Laidcnén , |king | of Uí Ceinnselaig ( 
## [doc0761]                      |King | Æthelwald Moll of No
## [doc0762]                      |King |
## [doc0762]                      |King |
## [doc0762]         Æthelred I , |king | of Northumbria ( d. 
## [doc0763]                      |King | Pepin III ( Short ) 
## [doc0763] cceeds Bridei V , as |king | of Picts ( modern Sc
## [doc0763] f Ireland Bridei V , |king | of Picts Fang Guan ,
## [doc0764]                      |King | Offa of Mercia conqu
## [doc0764] , but allows a local |king | , Heaberht , to rule
## [doc0765] g Dynasty Ceolwulf , |king | of Northumbria Domna
## [doc0765] stant cousin of late |king | Oswulf .            
## [doc0765] se poet Gyeongdeok , |king | of Silla ( Korea )  
## [doc0765]                      |King |
## [doc0765]                      |King | Pepin III ( Short ) 
## [doc0766] on mac Con Congalt , |king | of Mide ( Ireland ) 
## [doc0767]   The Franks , under |King | Pepin III ( Short ) 
## [doc0767]       Aedh Ailghin , |king | of Uí Maine ( Irelan
## [doc0768] Fruela I ( Cruel ) , |King | of Asturias , is ass
## [doc0768]                      |King | Alhred of Northumbri
## [doc0768]          September – |King | Pepin III ( Short ) 
## [doc0768]           Fruela I , |king | of Asturias Li Huaix
## [doc0768]  August – Eadberht , |king | of Northumbria Septe
## [doc0769] asty ( d. ) Egbert , |king | of Wessex ( or )    
## [doc0769] bhar mac Cumasgach , |king | of Uí Fiachrach Aidh
## [doc0769]                      |King | Charlemagne ( Charle
## [doc0770] m Snáma mac Flainn , |king | of Osraige ( Ireland
## [doc0770]                      |King | Alhred of Northumbri
## [doc0770] nnselach mac Brain , |king | of Uí Ceinnselaig ( 
## [doc0770]                      |King | Charlemagne signs a 
## [doc0771]                      |King | Offa of Mercia defea
## [doc0771]           December – |King | Carloman I , younges
## [doc0772]                      |King | Desiderius of Lombar
## [doc0772] Dúngal mac Cellaig , |king | of Osraige ( Ireland
## [doc0772]         In England , |King | Offa of Mercia attem
## [doc0772]                      |King |
## [doc0772] Dúngal mac Cellaig , |king | of Osraige ( Ireland
## [doc0773]                      |King | Khongtekcha of Manip
## [doc0773]             Summer – |King | Charlemagne and his 
## [doc0773]                      |King | Alhred of Northumbri
## [doc0773] othaid mac Cathail , |king | of Connacht ( Irelan
## [doc0773]                      |King | Desiderius remains i
## [doc0773] ochfael ap Elisedd , |king | of Powys ( Wales )  
## [doc0773]        Khongtekcha , |king | of Manipur ( India )
## [doc0774]                      |King | Desiderius surrender
## [doc0774]                      |King | Offa of Mercia subdu
## [doc0774] er ( b. ) Aurelius , |king | of Asturias ( Spain 
## [doc0774] ar - old son of late |king | Æthelwald Moll .    
## [doc0774]                      |King | Charlemagne conquers
## [doc0775] e unknown Ciniod I , |king | of Picts Fujiwara no
## [doc0775]                      |King | Dharmapala begins hi
## [doc0775]         Saxon Wars : |King | Charlemagne holds a 
## [doc0776]   Battle of Otford : |King | Egbert II of Kent de
## [doc0776] llach mac Dúnchada , |king | of Leinster ( Irelan
## [doc0776] llach mac Dúnchada , |king | of Leinster ( Irelan
## [doc0776] on of former Lombard |king | Desiderius .        
## [doc0777] ithrí mac Domnaill , |king | of Connacht ( Irelan
## [doc0777]                      |King |
## [doc0777] ithrí mac Domnaill , |king | of Connacht ( Irelan
## [doc0777]  unknown Heungdeok , |king | of Silla ( Korea ) (
## [doc0777] n ( d. ) Heungdeok , |king | of Silla ( Korea ) (
## [doc0778]  Eterscél mac Áeda , |king | of Uí Cheinnselaig (
## [doc0778] ( d. ) Louis Pious , |king | of Franks ( d. ) Rot
## [doc0779] ttle of Bensington : |King | Offa of Mercia defea
## [doc0779]         Saxon Wars : |King | Charlemagne assemble
## [doc0779] f Fulda Æthelred I , |king | of East Anglia ( app
## [doc0780]                      |King |
## [doc0780]         Saxon Wars : |King |
## [doc0780]                      |King |
## [doc0780]            Hyegong , |king | of Silla ( Korea ) (
## [doc0780] nchadh ua Daimhine , |king | of Uí Maine ( Irelan
## [doc0781] harles I is anointed |king | of Aquitaine , and L
## [doc0781]                      |King | Charlemagne has his 
## [doc0781] ( approximate date ) |King | Fergus mac Echdach o
## [doc0782] onall mac Fidhghal , |king | of Uí Maine ( Irelan
## [doc0782]                      |King |
## [doc0783] gitimate son of late |king | Alfonso I , usurps a
## [doc0783]               Silo , |king | of Asturias ( Spain 
## [doc0784]                      |King |
## [doc0785]        Talorgan II , |king | of Picts Tatzates , 
## [doc0785]         Saxon Wars : |King |
## [doc0785]                      |King | Offa of Mercia re-as
## [doc0785] uaidrí mac Fáeláin , |king | of Leinster ( Irelan
## [doc0785]  Tiliw Chan Yopaat , |king | of Quiriguá ( Guatem
## [doc0785] ( d. ) Harald Klak , |king | of Denmark ( approxi
## [doc0785]           Seondeok , |king | of Silla ( Korea )  
## [doc0785] l Dúin mac Fergusa , |king | of Brega ( Ireland )
## [doc0786] of Wessex Cynewulf , |king | of Wessex Desiderius
## [doc0786] rd , brother of late |king | Sigeberht , ambushes
## [doc0786]  , who later becomes |king | of Kent .           
## [doc0786] Tipraiti mac Taidg , |king | of Connacht ( Irelan
## [doc0786] cognise Cyneheard as |king | .                   
## [doc0786] stant nephew of late |king | Ine , named Egbert ,
## [doc0786]                      |King | Charles Younger , so
## [doc0787] own his son Ecgfrith |king | of Mercia at Brixwor
## [doc0788] tember – Ælfwald I , |king | of Northumbria Abd a
## [doc0788]                      |King | Mauregatus of Asturi
## [doc0788]                      |King | Charlemagne conquers
## [doc0788] on of former Lombard |king | Desiderius , invade 
## [doc0788]  and ( d. ) Aejang , |king | of Silla ( Korea )  
## [doc0789] hnae mac Áedo Róin , |king | of Ulaid ( Ireland )
## [doc0789]                      |King | Beorhtric of Wessex 
## [doc0789]                      |King | Charlemagne crosses 
## [doc0789] ne I is installed as |king | of Picts .          
## [doc0789]                      |King | Pepin of Italy conqu
## [doc0789] Spoleto Mauregatus , |king | of Asturias ( or ) M
## [doc0790] icerius palatii ) of |King | Charlemagne , is mad
## [doc0790] ) Cyngen ap Cadell , |king | of Powys ( Wales ) F
## [doc0790]                      |King |
## [doc0790] er ( d. ) Ramiro I , |king | of Asturias ( approx
## [doc0790]                      |King | Offa of Mercia takes
## [doc0790]                      |King |
## [doc0791] o II , son of former |king | Fruela I , becomes r
## [doc0791]                      |King | Charlemagne assemble
## [doc0791] er his son Pepin , ( |king | of Lombards ) invade
## [doc0791] Artgal mac Cathail , |king | of Connacht ( Irelan
## [doc0791] ria , sons of former |king | Ælfwald I , are pers
## [doc0792] umbria tempts exiled |king | Osred II back to his
## [doc0792]           Osred II , |king | of Northumbria      
## [doc0792] Cináed mac Artgail , |king | of Connacht ( Irelan
## [doc0793]                      |King | Charlemagne orders a
## [doc0793]                  [ ] |King | Offa of Mercia found
## [doc0794]                      |King | Charlemagne abandons
## [doc0794] ay – Æthelberht II , |king | of East Anglia Augus
## [doc0794]                      |King | Louis I ( son of Cha
## [doc0794] uncil of Frankfurt : |King | Charlemagne calls fo
## [doc0794]                May – |King |
## [doc0795] cess Bran Ardchenn , |king | of Leinster ( Irelan
## [doc0795]                      |King | Offa of Mercia recei
## [doc0795]          Æthelwulf , |king | of Wessex ( approxim
## [doc0795]                      |King | Charlemagne leads a 
## [doc0795]          Lothair I , |king | and emperor of Frank
## [doc0795]     Quarrels between |kings| Cynan Dindaethwy and
## [doc0796] April – Æthelred I , |king | of Northumbria June 
## [doc0796]              April – |King |
## [doc0796]                  [ ] |King | Charlemagne organize
## [doc0796]        July – Offa , |king | of Mercia ( b. ) Aug
## [doc0796]  , Eardwulf , as new |king | .                   
## [doc0796]                      |King | Offa of Mercia and C
## [doc0796] ld proclaims himself |king | of East Anglia , but
## [doc0797]                      |King | Caradog ap Meirion o
## [doc0797]                      |King | Charlemagne issues C
## [doc0797]                      |King |
## [doc0797]   Bernard of Italy , |king | of Lombards ( d. ) I
## [doc0798]           Wonseong , |king | of Silla ( Korea )  
## [doc0798]                      |King | Charles Younger , a 
## [doc0798]                      |King | Coenwulf of Mercia i
## [doc0798] attle of Bornhöved : |King | Charlemagne forms an
## [doc0798] Caradog ap Meirion , |king | of Gwynedd ( or )   
## [doc0798]                      |King | Alfonso II of Asturi
## [doc0798]                      |King | Eardwulf of Northumb
## [doc0798]  his friend , exiled |king | Osbald of Northumbri
## [doc0798]                      |King | Sigeric             
## [doc0799]                      |King | Eardwulf of Northumb
## [doc0799] monk ( b. ) Osbald , |king | of Northumbria      
## [doc0799]               Former |king | Osbald dies as an ab
## [doc0800] arlemagne Vatsraja , |king | of Gurjara - Pratiha
## [doc0800]                      |King |
## [doc0800] mber – Charlemagne , |king | of Franks , is crown
## [doc0800] e ) Amoghavarsha I , |king | of Rashtrakuta ( Ind
## [doc0800]                      |King | Eardwulf of Northumb
## [doc0800] Ailill mac Fergusa , |king | of South Brega ( Ire
## [doc0801]              April – |King | Louis Pious , son of
## [doc0801]                      |King | Eardwulf of Northumb
## [doc0801]  grant by Coenwulf , |king | of Mercia was part o
## [doc0802]                      |King | Beorhtric of Wessex 
## [doc0802] d is accepted as new |king | . [ ]               
## [doc0802]  general Beorhtric , |king | of Wessex Domitian ,
## [doc0802] avartin ) , or god - |king | ( devaraja ) , under
## [doc0804] ero and Scandinavian |King | .                   
## [doc0805] ernach mac Fergusa , |king | of South Brega ( Ire
## [doc0805]                      |King | Egbert of Wessex for
## [doc0805]   García Íñiguez I , |king | of Pamplona ( approx
## [doc0806]                      |King | Eardwulf of Northumb
## [doc0806] te date ) Ralpacan , |king | of Tibet ( approxima
## [doc0807] g Conall mac Taidg , |king | of Picts ( approxima
## [doc0807]           II becomes |king | of Sri Lanka , and m
## [doc0807]        His brother , |King | Coenwulf of Mercia ,
## [doc0807]                      |King | Cuthred of Kent dies
## [doc0808] adell ap Brochfael , |king | of Powys ( modern Wa
## [doc0808] adell ap Brochfael , |king | of Powys ( Wales ) D
## [doc0808]                      |King | Godfred of Danes for
## [doc0808]               Exiled |king | Eardwulf of Northumb
## [doc0808]  date ) Ælfwald II , |king | of Northumbria ( app
## [doc0809] ac Donngaile , Irish |king | Elfodd , Welsh bisho
## [doc0809]               Gang , |king | of Balhae ( Korea ) 
## [doc0809] poet ( b. ) Aejang , |king | of Silla ( b. )     
## [doc0810] ) Kenneth MacAlpin , |king | of Scotland ( d. ) L
## [doc0810]            Godfred , |king | of Danes Ismail ibn 
## [doc0811]                      |King | Hemming of Denmark c
## [doc0812] Domnall mac Ailpín , |king | of Scotland ( d. ) L
## [doc0812] man ( b. ) Hemming , |king | of Denmark Ibrahim I
## [doc0812]              Jeong , |king | of Balhae ( Korea ) 
## [doc0812]                      |King |
## [doc0812] nulo , becomes joint |kings| of Denmark .        
## [doc0812] lann mac Congalaig , |king | of Brega ( Ireland )
## [doc0812]          At death of |king | Hemming of Denmark t
## [doc0813] mber — Louis Pious , |king | of Aquitaine ( and o
## [doc0814] son Louis Pious , as |king | of Frankish Empire .
## [doc0814] t ( b. ) Reginfrid , |King | of Denmark Sugano no
## [doc0814] uary – Charlemagne , |king | and emperor of Frank
## [doc0815]                      |King | Egbert of Wessex rav
## [doc0815] ius mac Tommaltaig , |king | of Connacht ( Irelan
## [doc0816]                      |King |
## [doc0816]                      |King | Hywel of Gwynedd is 
## [doc0816]            October – |King | Louis Pious ( son of
## [doc0816] s Cynan Dindaethwy , |king | of Gwynedd ( Wales )
## [doc0817]  son , is proclaimed |king | of Aquitaine , and r
## [doc0817] ate date ) Pyinbya , |king | of Burma ( d. ) Janu
## [doc0818] – Bernard of Italy , |king | of Lombards ( b. )  
## [doc0818] rman , chieftain and |king | of Brittany Muiredac
## [doc0818] nach mac Congalaig , |king | of Brega ( Ireland )
## [doc0818]              April – |King | Bernard of Italy , i
## [doc0819] rlord Áed Oirdnide , |king | of Ailech ( Ireland 
## [doc0819] irell mac Fiachnai , |king | of Ulaid ( Ireland )
## [doc0820]  d. ) Rhodri Great , |king | of Gwynedd ( Wales )
## [doc0820]  Ashot I ( Great ) , |king | of Armenia ( approxi
## [doc0820] hgal mac Donngaile , |king | of Munster Tutu Chen
## [doc0820] santín mac Fergusa , |king | of Picts [ ]        
## [doc0821]                      |King | Coenwulf of Mercia d
## [doc0821] r ( or ) Ordo ño I , |king | of Asturias ( approx
## [doc0821]  Artrí mac Cathail , |king | of Munster ( Ireland
## [doc0821] f Croatia Coenwulf , |king | of Mercia Egbert , b
## [doc0822]                      |King | Ceolwulf I of Mercia
## [doc0823] Tuscany Ceolwulf I , |king | of Mercia ( approxim
## [doc0823] pin II ( Younger ) , |king | of Aquitaine Adeloch
## [doc0823]                      |King | Ceolwulf I of Mercia
## [doc0823] une – Charles Bald , |king | of Franks ( d. ) [ ]
## [doc0825]    Hywel ap Rhodri , |king | of Gwynedd ( Wales )
## [doc0825] Battle of Ellandun : |King | Egbert of Wessex def
## [doc0825] te date ) Louis II , |king | of Italy and Holy Ro
## [doc0825] essail mac Ailillo , |king | of Ulaid ( Ireland )
## [doc0825]                      |King | Hywel ap Rhodri of G
## [doc0826]          Beornwulf , |king | of Mercia Fujiwara n
## [doc0826]                      |King | Harald Klak of Denma
## [doc0826]  out its pro-Mercian |king | Baldred .           
## [doc0826]                      |King | Beornwulf of Mercia 
## [doc0827] ant cousin ) of late |king | Ceolwulf I 's daught
## [doc0827] poet ( or ) Ludeca , |king | of Mercia Wu Chongyi
## [doc0827] tablishes himself as |king | of East Anglia , aft
## [doc0828] f Bavaria , Frankish |king | ( or )              
## [doc0829]                      |King | Egbert of Wessex inv
## [doc0829] t request of Swedish |king | Björn at Haugi .    
## [doc0829] Cináed mac Mugróin , |king | of Uí Failghe Cui Zh
## [doc0829] edach mac Ruadrach , |king | of Leinster ' Umayr 
## [doc0829] alfdan Black becomes |king | of Agder ( modern No
## [doc0830] f Bavaria , Frankish |king | ( or )              
## [doc0830] by his son Pepin I , |king | of Aquitaine .      
## [doc0830]                      |King | Wiglaf of Mercia reg
## [doc0830]           Eardwulf , |king | of Northumbria ( app
## [doc0832] gthy siege . [ ] [ ] |King | Pepin               
## [doc0833] ait mac Tommaltaig , |king | of Connacht ( Irelan
## [doc0834]  Cellach mac Brain , |king | of Leinster ( Irelan
## [doc0834]                      |King | Óengus II dies after
## [doc0834] nobleman Óengus II , |king | of Picts Robert III 
## [doc0835]  date ) Lothair II , |king | of Lotharingia ( d. 
## [doc0836] nchester Heungdeok , |king | of Silla ( b. ) Lamb
## [doc0836]                      |King | Egbert of Wessex fig
## [doc0836]         Æthelberht , |king | of Wessex ( approxim
## [doc0837] antinople Drest IX , |king | of Picts Eadwulf , b
## [doc0837]                      |King | Drest IX dies after 
## [doc0838]           Ralpacan , |king | of Tibet ( approxima
## [doc0838] pin I of Aquitaine , |king | of Aquitaine ( b. ) 
## [doc0838]                      |King | Pepin               
## [doc0838]                      |King | Fedelmid mac Crimtha
## [doc0838] ) Bran mac Fáeláin , |king | of Leinster ( Irelan
## [doc0839] óganan mac Óengusa , |King | of Picts , his broth
## [doc0839]                      |King | Louis German , grand
## [doc0839] redach mac Eochada , |king | of Ulaid Pei Du , ch
## [doc0839]  of Kakheti Wiglaf , |king | of Mercia Kirby , D.
## [doc0839] . ) Áed mac Boanta , |king | of Dál Riata Aznar I
## [doc0839]                      |King | Egbert of Wessex die
## [doc0840]            Wigstan , |king | of Mercia ( approxim
## [doc0840] eman of line of late |king | Beornred , named Ber
## [doc0840] les Bald , , becomes |king | of Franks , and join
## [doc0840]                      |King | Wigstan of Mercia , 
## [doc0840] Camerino Czimislav , |king | of Sorbs ( approxima
## [doc0841] d. ) Edmund Martyr , |king | of East Anglia ( app
## [doc0842] úngal mac Fergaile , |king | of Osraige ( Ireland
## [doc0842]  ( b. ) Alfonso II , |king | of Asturias ( b. ) B
## [doc0842]              March – |King | Alfonso II of Asturi
## [doc0842]                      |King | Louis German , ruler
## [doc0842] ro I , son of former |king | Bermudo I , as his s
## [doc0842] leman ( b. ) Uurad , |king | of Picts ( approxima
## [doc0843] Fergus mac Fothaid , |king | of Connacht ( Irelan
## [doc0843]                      |King | Louis German receive
## [doc0843] ographer Bridei VI , |king | of Picts ( Scotland 
## [doc0843]  Dynasty of Scottish |kings| begins to reign .   
## [doc0843]                      |King | Charles Bald receive
## [doc0843]                      |King | Kenneth MacAlpin ( C
## [doc0844] thair I , is crowned |king | at Rome by Pope Serg
## [doc0844]             Summer – |King | Charles Bald struggl
## [doc0844]       Merfyn Frych , |king | of Gwynedd ( Wales )
## [doc0844]                      |King | Æthelred II of North
## [doc0844]  historian Rædwulf , |king | of Northumbria ( app
## [doc0844]                      |King | Merfyn Frych dies af
## [doc0845]  ( b. ) Bridei VII , |king | of Picts Dionysius I
## [doc0845]  date ) Berengar I , |king | of Italy ( approxima
## [doc0845]                      |King | Charles Bald assembl
## [doc0846]          Gyeongmun , |king | of Silla ( Korea ) (
## [doc0846]                      |King | Æthelred II of North
## [doc0846] g Dynasty Mojmir I , |king | of Moravia ( approxi
## [doc0846]                      |King | Louis German grants 
## [doc0846] ( b. ) Dantivarman , |king | of Pallava Empire ( 
## [doc0846]                      |King | Charles Bald recogni
## [doc0847]         Æthelred I , |king | of Wessex ( approxim
## [doc0847] mid mac Crimthainn , |king | of Munster ( Ireland
## [doc0848]                      |King |
## [doc0848] ng Dynasty Drest X , |king | of Picts Guo , empre
## [doc0848]                      |King | Charles Bald sends a
## [doc0848]        Alfonso III , |king | of Asturias ( approx
## [doc0849]       Alfred Great , |king | of Wessex ( d. ) Eri
## [doc0849]                      |King | Pyinbya of Burma fou
## [doc0849] Conaing mac Flainn , |king | of Brega ( Ireland )
## [doc0850]    Harald Fairhair , |king | of Norway ( approxim
## [doc0850]                      |King | Kenneth I ( also cal
## [doc0850] mate date ) Eanred , |king | of Northumbria ( app
## [doc0850] rnulf of Carinthia , |king | of East Frankish Kin
## [doc0850]                      |King | Louis II , eldest so
## [doc0850] pan ( d. ) Smbat I , |king | of Armenia ( approxi
## [doc0850]           February – |King | Ramiro I dies in his
## [doc0851]                      |King | Íñigo Arista of Pamp
## [doc0851] Cináed mac Conaing , |king | of Brega ( Ireland )
## [doc0851] his father Nominoe , |king | of Brittany , dies .
## [doc0851]  acknowledges him as |king | of Brittany .       
## [doc0851] press Íñigo Arista , |king | of Pamplona ( or ) I
## [doc0851]                      |King | Pepin               
## [doc0851] s oath to Charles as |king | of West Frankish Kin
## [doc0851]  ) March – Nominoe , |king | ( or duke ) of Britt
## [doc0851]  García Íñiguez , as |king | of Pamplona ( later 
## [doc0852] a ( b. ) Æthelstan , |king | of Kent ( approximat
## [doc0852]  Chinese warlord and |king | ( d. ) Borivoj      
## [doc0852] date ) Harald Klak , |king | of Denmark ( approxi
## [doc0852] y his son Burgred as |king | of Mercia .         
## [doc0852]                      |King | Æthelstan , eldest s
## [doc0853]                      |King | Olof leads Swedish V
## [doc0853]                      |King | Burgred of Mercia ap
## [doc0853]                      |King | Charles Bald bribes 
## [doc0853]  Chinese warlord and |king | ( approximate date )
## [doc0854]                      |King | Cyngen of Powys make
## [doc0854]   Cadell ap Rhodri , |king | of Seisyllwg ( d. ) 
## [doc0854]                      |King | Æthelweard of East A
## [doc0854]         Æthelweard , |king | of East Anglia Eanbe
## [doc0854]                      |King |
## [doc0855] Lothair I , Frankish |king | and emperor ( b. )  
## [doc0855]             Spring – |King |
## [doc0855] s Cyngen ap Cadell , |king | of Powys ( Wales ) E
## [doc0856]                      |King | Ordo ño I of Asturia
## [doc0856]  Chinese warlord and |king | ( d. ) January – Ald
## [doc0856]                      |King | Alfred and Mercians 
## [doc0856]            October – |King |
## [doc0856]                      |Kings| , Currency and Allia
## [doc0856]                      |King | Charles Bald cedes c
## [doc0857]            Erispoe , |king | ( duke ) of Brittany
## [doc0857] udán mac Muiredaig , |king | of Ulaid ( Ireland )
## [doc0857] nd martyr Dae Ijin , |king | of Balhae ( Korea ) 
## [doc0857]                      |King | Charles Bald acknowl
## [doc0858] anuary – Æthelwulf , |king | of Wessex February –
## [doc0858]            January – |King |
## [doc0858]           February – |King | Kenneth I ( Cináed m
## [doc0858]                      |King | Charles Bald flees t
## [doc0858] cceeds as Donald I , |king | of Alba .           
## [doc0858]             Summer – |King | Louis German , summo
## [doc0859] phate ( d. ) Odo I , |king | of West Frankish Kin
## [doc0859]  Battle of Albelda : |King | Ordo ño I of Asturia
## [doc0859]        Máel Gualae , |king | of Munster ( Ireland
## [doc0860]           Robert I , |king | of West Frankish Kin
## [doc0860]    Sancho Garcés I , |king | of Pamplona ( approx
## [doc0860]                      |King | Charles Bald gives o
## [doc0860]              Odo I , |king | of West Frankish Kin
## [doc0860] e date ) Donald II , |king | of Scotland ( approx
## [doc0860] cember – Æthelbald , |king | of Wessex [ ]       
## [doc0861]           Heongang , |king | of Silla ( approxima
## [doc0861] rite ( b. ) Heonan , |king | of Silla ( Korea )  
## [doc0862]              April – |King | Donald I of Scotland
## [doc0862]        Æthelred II , |king | of Northumbria Al - 
## [doc0862]                      |King | Lothair             
## [doc0862] nd Ruarc mac Brain , |king | of Leinster ( Irelan
## [doc0862] ) April – Donald I , |king | of Scotland ( b. )  
## [doc0863]  Provence , Frankish |king | ( b. )              
## [doc0863]                      |King | Osberht of Northumbr
## [doc0863]                      |King | Louis German suppres
## [doc0863] ) ( d. ) Louis III , |king | of West Frankish Kin
## [doc0863]                      |King | Lothair II receives 
## [doc0863] recán mac Diarmata , |king | of Leinster Umar al 
## [doc0864] y ( d. ) Louis III , |king | of West Frankish Kin
## [doc0864]                      |King | Alfonso III conquers
## [doc0864]                      |King | Louis German invades
## [doc0864]  Pepin is deposed as |king | of Aquitaine , and i
## [doc0864] – Edict of Pistres : |King | Charles Bald orders 
## [doc0864] Lorcán mac Cathail , |king | of Uisneach ( Irelan
## [doc0865]               Viking |king | Ragnar Lodbrok is ca
## [doc0865]             Autumn – |King | Æthelberht of Wessex
## [doc0865] Dynasty Æthelberht , |king | of Wessex Antony You
## [doc0865]                      |King | Lothair II , with ex
## [doc0865]                      |King | Edmund of East Angli
## [doc0865] n ( d. ) Louis III , |king | of West Frankish Kin
## [doc0865]                      |King | Louis German divides
## [doc0866] nt May – Ordo ño I , |king | of Asturias June – R
## [doc0866] ( d. ) Carloman II , |king | of West Frankish Kin
## [doc0866]                May – |King | Ordo ño I , ruler of
## [doc0866] ince Charles Child , |king | of Aquitaine Eberhar
## [doc0867]  , installs a puppet |king | of Northumbria , Ecg
## [doc0867]  d. ) March – Ælla , |king | of Northumbria March
## [doc0867]  ( d. ) Gyeon Hwon , |king | of Hubaekje ( Korea 
## [doc0867] nchad mac Aedacain , |king | of Uisneach ( Irelan
## [doc0867] reaty of Compiègne : |King | Charles Bald cedes C
## [doc0867]  , installs a puppet |king | of Northumbria , Ecg
## [doc0868]                      |King | Charles Bald meets h
## [doc0868]                      |King | Burgred of Mercia ap
## [doc0868]                      |King | Áed Findliath drives
## [doc0869] pan ( d. ) Gung Ye , |king | of Hu Goguryeo ( app
## [doc0869] ugust – Lothair II , |King | of Middle Francia ( 
## [doc0869] aing mac Muiredaig , |king | of Leinster ( Irelan
## [doc0869]      Edmund Martyr , |king | of East Anglia Al - 
## [doc0869]           November – |King | Edmund Martyr and hi
## [doc0870]         Zwentibold , |king | of Lotharingia ( d. 
## [doc0870] Treaty of Meerssen : |King | Louis German forces 
## [doc0870]                      |King | Edmund Martyr is cap
## [doc0870]      Edmund Martyr , |king | of East Anglia ( or 
## [doc0871]               Viking |king | April – Æthelred I ,
## [doc0871]   Alfred succeeds as |king | of Wessex after Æthe
## [doc0871] hmharan mac Brocan , |king | of Aidhne ( Ireland 
## [doc0871]           García I , |king | of León ( approximat
## [doc0871] lill mac Dúnlainge , |king | of Leinster Cathalán
## [doc0871] led by Danish Viking |kings| Halfdan and Bagsecg 
## [doc0871]                      |King | Rhodri Mawr ( Great 
## [doc0872] Rome ( b. ) Artgal , |king | of Strathclyde ( Sco
## [doc0872] lad hua Mugthigirn , |king | of Munster ( Ireland
## [doc0872] mes ( at age ) first |king | of Norway .         
## [doc0872]                      |King | Artgal of Strathclyd
## [doc0872]                      |King | Ecgberht            
## [doc0872]  founder and first ' |king | ' of independent Duc
## [doc0872]                      |King | Burgred pays tribute
## [doc0873]         Ecgberht I , |king | of Northumbria Hunay
## [doc0873] t ( d. ) Ordoño II , |king | of Galicia and León 
## [doc0873] lobar mac Loingsig , |king | of Ulaid ( Ireland )
## [doc0874] nung , first Norse ' |king | ' of Dublin , is kil
## [doc0874]  d. ) Edward Elder , |king | of Wessex ( approxim
## [doc0875]           December – |King | Charles Bald , suppo
## [doc0875]                      |King |
## [doc0875]                      |King | Harald Fairhair of N
## [doc0875]       Sale Ngahkwe , |king | of Burma ( approxima
## [doc0875]                      |King | Jayavarman III found
## [doc0875] te date ) Donyarth , |king | of Cornwall ( approx
## [doc0875] , Eystein Olafsson , |king | of Dublin , is kille
## [doc0875]  August – Louis II , |king | of Italy and Holy Ro
## [doc0875]          Fruela II , |king | of Asturias and León
## [doc0876] er removal of puppet |king | Ricsige of Northumbr
## [doc0876]       Henry Fowler , |king | of Germany ( d. ) Jo
## [doc0876] f Brittany Pyinbya , |king | of Burma ( b. ) Raga
## [doc0876]                      |King |
## [doc0877]  installed as puppet |king | of Mercia .         
## [doc0877]             Autumn – |King | Alfred Great raises 
## [doc0877] rowned by Hincmar as |king | ( not emperor ) of W
## [doc0877]                      |King | Jayavarman III dies 
## [doc0877]                      |King | Charles II ( Bald ) 
## [doc0877] on Louis Stammerer , |king | of Aquitaine , who b
## [doc0877]                      |King | Constantin I is kill
## [doc0877]                      |King | Halfdan             
## [doc0877] te ) Constantine I , |king | of Alba ( Scotland )
## [doc0878]  ( or ) Krishna II , |king | of Rashtrakuta ( Ind
## [doc0878]        Giric becomes |king | of Picts , and allie
## [doc0878] oatia Rhodri Great , |king | of Wales Run , king 
## [doc0878]            January – |King |
## [doc0878]                      |King | Rhodri Great of Gwyn
## [doc0878] nto Amoghavarsha I , |king | of Rashtrakuta ( b. 
## [doc0878]                      |King |
## [doc0878]  together as joint - |kings| .                   
## [doc0878] s Louis Stammerer as |king | of West Frankish Kin
## [doc0878] slim scholar Áed I , |king | of Alba ( Scotland )
## [doc0878]                      |King | Alfonso III of Astur
## [doc0879] anders Ceolwulf II , |king | of Mercia ( approxim
## [doc0879]              April – |King | Louis Stammerer dies
## [doc0879] r – Charles Simple , |king | of West Frankish Kin
## [doc0879] Áed Findliath , high |king | of Ireland Ahmad ibn
## [doc0879]                      |King |
## [doc0879]                      |King | Charles Fat becomes 
## [doc0879]  together as joint - |kings| .                   
## [doc0879] er Guthrum becomes ' |king | ' of East Anglia .  
## [doc0880] aspurakan , Armenian |king | ( approximate date )
## [doc0880]                      |King | Louis III ( Younger 
## [doc0880]                      |King | Harald Fairhair move
## [doc0880]    Hywel ap Cadell , |king | of Deheubarth ( Wale
## [doc0880]  of Lüneburg Heath : |King | Louis III is defeate
## [doc0880]  : Louis Younger and |kings| of West Frankish Kin
## [doc0880] f Bavaria , Frankish |king |
## [doc0881]           Conrad I , |king | of East Frankish Kin
## [doc0881] an Bárid mac Ímair , |king | of Dublin Cui Hang ,
## [doc0881]           February – |King | Charles Fat , son of
## [doc0881]  : The West Frankish |kings| Louis III , and his 
## [doc0881]    Battle of Conwy : |King | Anarawd of Gwynedd (
## [doc0882]            January – |King | Louis Younger dies i
## [doc0882]  Anundsson , Swedish |king | ( approximate date )
## [doc0882]             August – |King | Carloman II becomes 
## [doc0882] ry – Louis Younger , |king | of East Frankish Kin
## [doc0882]                      |King |
## [doc0883]                      |King | Charles Fat travels 
## [doc0883]                      |King | Charles orders Guy t
## [doc0883]                      |King | Carloman            
## [doc0883]                      |King | Charles Fat sends Be
## [doc0883]            Hyogong , |king | of Silla ( Korea ) (
## [doc0883]  Eochocán mac Áedo , |king | of Ulaid ( Ireland )
## [doc0884]             Summer – |King | Carloman            
## [doc0884] nall mac Muirecáin , |king | of Leinster Li Chang
## [doc0884]                      |King | Æthelred II of Merci
## [doc0884] mber – Carloman II , |king | of West Frankish Kin
## [doc0885]                      |King |
## [doc0885] ix months of year in |king | 's service .        
## [doc0885] timate son of former |king | Lothair II , and his
## [doc0885] as overlord of Welsh |kings| .                   
## [doc0885] uiredach mac Brain , |king | of Leinster ( Irelan
## [doc0885] Saône Mihira Bhoja , |king | of Gurjara - Pratiha
## [doc0886] ) Airemón mac Áedo , |king | of Ulaid ( Ireland )
## [doc0886] d territory , to ask |king | of West Francia Char
## [doc0886] chnae mac Ainbítha , |king | of Ulaid Gao Renhou 
## [doc0886]                      |King | Alfred Great of Wess
## [doc0886]                      |King |
## [doc0887] timate son of former |king | Carloman of Bavaria 
## [doc0887] lf II as duke ( or ' |king | ' ) of Aquitaine .  
## [doc0887] ughter Gisela ) , as |king | of Italy .          
## [doc0887]          Jeonggang , |king | of Silla ( modern Ko
## [doc0887] d. ) Qian Yuanguan , |king | of Wuyue ( Ten Kingd
## [doc0888] f Paris , is elected |king | of West Frankish Kin
## [doc0888]                      |King | Arnulf of Carinthia 
## [doc0888] confirms Berengar as |king | of Lombardia , and r
## [doc0888] sthumous son of late |king | Louis Stammerer ) . 
## [doc0888] ball mac Dúnlainge , |king | of Osraige ( Ireland
## [doc0888] ichfrith mac Ímair , |king | of Dublin Tetbert , 
## [doc0888] Áed mac Conchobair , |king | of Connacht ( Irelan
## [doc0889]      Indravarman I , |king | of Khmer Empire ( or
## [doc0889] im of Louis Blind as |king | of Provence , after 
## [doc0889] flæd ( a daughter of |king | Alfred Great ) of Me
## [doc0889] tine I , who becomes |king | of Scotland .       
## [doc0889] to , defeats Lombard |king | Berengar I at Trebbi
## [doc0889] modern Korea ) under |King | Jinseong seeks to co
## [doc0890]  Old , Danish Viking |king | ( approximate date )
## [doc0890]                      |King | Donald II of Scotlan
## [doc0890] ) Rudolph , Frankish |king | ( approximate date )
## [doc0890]                      |King |
## [doc0890]                      |King | Anarawd ap Rhodri of
## [doc0890]          Æthelhelm , |king | of Wessex ( approxim
## [doc0891] ambert is proclaimed |king | of Italy , at capita
## [doc0892] and declares himself |king | . [ ]               
## [doc0892]                      |King |
## [doc0893] ammerer , is crowned |king | of West Frankish Kin
## [doc0893] with army of deposed |king | Berengar I , and pro
## [doc0893]  Bécc mac Airemóin , |king | of Ulaid ( Ireland )
## [doc0893]                      |King | Alfonso III repopula
## [doc0893]                      |King | Yasovarman I ( calle
## [doc0893] date ) Louis Child , |king | of East Frankish Kin
## [doc0894] December – Guy III , |king | of Italy and Holy Ro
## [doc0894]                      |King | Arnulf of Carinthia 
## [doc0894]          Æthelstan , |king | of England ( approxi
## [doc0894] ning up with deposed |king | Berengar I at Verona
## [doc0895]             Autumn – |King | Alfred Great blockad
## [doc0895]                      |King | Anarawd of Gwynedd i
## [doc0895] e ) Sancho Ordóñez , |king | of Galicia ( approxi
## [doc0895] dach mac Eochocáin , |king | of Ulaid ( Ireland )
## [doc0895] y August – Guthred , |king | of Northumbria Octob
## [doc0895]                      |King |
## [doc0895]                      |King | Arnulf of Carinthia 
## [doc0895] crowns Zwentibold as |king | of Lotharingia .    
## [doc0896]           February – |King | Arnulf of Carinthia 
## [doc0896]                      |King |
## [doc0896]  Sitriuc mac Ímair , |king | of Dublin Walfred of
## [doc0896]         [ ] Summer – |King | Alfred Great orders 
## [doc0896] n meantime , deposed |king | Berengar I recovers 
## [doc0897] n ( d. ) Gyeongsun , |king | of Silla ( Korea ) (
## [doc0897]                      |King | Lambert II travels t
## [doc0898]                      |King |
## [doc0898]            January – |King |
## [doc0898]              Odo I , |king | of West Frankish Kin
## [doc0898] gains recognition as |king | of Italy .          
## [doc0899]                      |King | Berengar            
## [doc0899] youngest son of late |king | Æthelred I ) dispute
## [doc0899]  place of West Saxon |kings| , and Christchurch .
## [doc0899] rnulf of Carinthia , |king | of East Frankish Kin
## [doc0899]                      |King | Arnulf of Carinthia 
## [doc0899] le ( d. ) Ma Xifan , |king | of Chu ( d. ) Ma Xis
## [doc0899] nd guardian of young |king | .                   
## [doc0899] ber – Alfred Great , |king | of Wessex ( b. )    
## [doc0899]            October – |King | Alfred Great dies af
## [doc0899] on , Edward Elder as |king | of Wessex .         
## [doc0900] d Great ) is crowned |king | of England at Kingst
## [doc0900] akes Pavia , forcing |king | Berengar I to flee ,
## [doc0900] in Constantine II as |king | of Scotland ; [ ] he
## [doc0900] ugust – Zwentibold , |king | of Lotharingia , is 
## [doc0900] y Merfyn ap Rhodri , |king | of Powys ( approxima
## [doc0900] hild ) is proclaimed |king | of East Frankish Kin
## [doc0900] adg mac Conchobair , |king | of Connacht ( Irelan
## [doc0900] arman Rajasimha II , |king | of Pandya , begins t
## [doc0900] ugust – Zwentibold , |king | of Lotharingia ( b. 
## [doc0900] date ) Berengar II , |king | of Italy ( approxima
## [doc0900] k ( d. ) Ramiro II , |king | of León ( approximat
## [doc0901]           February – |King | Louis III ( Blind ) 
## [doc0901] nd proclaims himself |king | .                   
## [doc0902] ty ( d. ) Ælfweard , |king | of Wessex ( approxim
## [doc0903]                      |King | Berengar I of Italy 
## [doc0903]                      |King | Louis IV ( Child ) p
## [doc0904] mar ua Ímair , Norse |king | of Dublin John Old S
## [doc0904]             Summer – |King | Louis IV ( Child ) i
## [doc0904] e latter 's father , |King | Llywarch ap Hyfaidd 
## [doc0905]  Hyfaidd , nominally |king | of Dyfed , is caught
## [doc0905]   Cadell ap Rhodri , |king | of Seisyllwg ( Wales
## [doc0905]             Spring – |King | Berengar I of Italy 
## [doc0905]  Rhodri ap Hyfaidd , |king | of Dyfed Yahya ibn a
## [doc0906]                      |King | Constantine II of Sc
## [doc0906] e date ) Dae Wihae , |king | of Balhae ( Korea ) 
## [doc0907] is proclaims himself |king | , his power is cente
## [doc0907]                      |King | Edward Elder founds 
## [doc0907] is proclaims himself |king | , his power is cente
## [doc0908]  In an alliance with |kings| Cerball mac Muirecái
## [doc0908] rchén mac Murchadh , |king | of Maigh Seóla ( Ire
## [doc0908] mac mac Cuilennáin , |king | of Munster ( Ireland
## [doc0909]                      |King | Edward Elder and his
## [doc0909] ) Cadell ap Rhodri , |king | of Seisyllwg ( Wales
## [doc0909] achan mac Diarmata , |king | of Uí Maine ( Irelan
## [doc0910] Eowils and Halfdan , |kings| of Northumbria Ingwæ
## [doc0910]             Summer – |King | Alfonso III of Astur
## [doc0910] , García I , becomes |king | of León .           
## [doc0910]                      |King | Edward Elder attacks
## [doc0910] ord Mahendrapala I , |king | of Gurjara - Pratiha
## [doc0911] es III is elected as |king | of Lotharingia .    
## [doc0911]          September — |King | Louis IV ( Child ) ,
## [doc0911] er ( b. ) Louis IV , |king | of East Frankish Kin
## [doc0911] ad I at Forchheim as |king | of East Frankish Kin
## [doc0911]             Autumn – |King | Charles III ( Simple
## [doc0911]        Her brother , |King | Edward Elder , insis
## [doc0912]                      |King | Ordo ño II of Galici
## [doc0912] n nobleman Hyogong , |king | of Silla ( Korea ) (
## [doc0912]            Hyejong , |king | of Goryeo ( Korea ) 
## [doc0912] ate date ) Smbat I , |king | of Armenia ( approxi
## [doc0912] ctober – Rudolph I , |king | of Burgundy ( b. ) N
## [doc0913]                      |King | Edward Elder begins 
## [doc0914] pay tribute to Irish |kings| of Meath and Leinste
## [doc0914] January – García I , |king | of León ( Spain ) Fe
## [doc0914]  ño II , who becomes |king | of Galicia and León 
## [doc0914]        [ ] January – |King | García              
## [doc0915] e Domnall mac Áeda , |king | of Ailech ( Ireland 
## [doc0916]        Flann Sinna , |king | of Meath Anarawd ap 
## [doc0916] d , daughter of late |King | Alfred Great and wid
## [doc0917] ugaire mac Ailella , |king | of Leinster ( Irelan
## [doc0917]                      |King | Ordo ño II of León (
## [doc0917]         Guthrum II , |king | of East Anglia ( Eng
## [doc0917] tablishes himself as |king | , while his kinsman 
## [doc0918]           December – |King | Conrad I , injured a
## [doc0918]  Conrad I , Frankish |king | Gung Ye , king of Hu
## [doc0919] tablishes himself as |king | at York .           
## [doc0919]  Islandbridge : High |King | Niall Glúndub is kil
## [doc0919]           Theinhko , |king | of Pagan dynasty ( d
## [doc0919] ty ( d. ) García I , |king | of Pamplona ( d. )  
## [doc0920]        Gao Baorong , |king | of Nanping ( Ten Kin
## [doc0920]  date ) Ratna Pala , |king | of Kamarupa ( India 
## [doc0921] , Iltäbär ( vassal - |king | under Khazars ) of V
## [doc0921] ll ua Ímair , Viking |king | of Northumbria Richa
## [doc0921]             Summer – |King | Henry I ( Fowler ) d
## [doc0921]  I ( Magnificent ) , |king | of England ( d. ) Ja
## [doc0921] r – Treaty of Bonn : |King | Charles III ( Simple
## [doc0922] Odo , who is crowned |king | of West Frankish Kin
## [doc0922] ún Garcés ( Monk ) , |king | of Pamplona Galindo 
## [doc0923] a ) Harshavarman I , |king | of Angkor ( Cambodia
## [doc0923] uke of Burgundy , as |king | of West Frankish Kin
## [doc0923]                      |King | Robert I is killed ;
## [doc0923] adred ( or Edred ) , |king | of England ( d. ) Fu
## [doc0924] uly – Edward Elder , |king | of Wessex July – Abu
## [doc0924] April – Berengar I , |king | of Italy and Holy Ro
## [doc0924]             Summer – |King | Ordo ño II of Galici
## [doc0924] ndants of Visigothic |king | Wittiza .           
## [doc0924]               July – |King | Edward Elder dies at
## [doc0924]             Spring – |King | Berengar            
## [doc0924] t ( d. ) Gao Baoxu , |king | of Nanping ( Ten Kin
## [doc0924] yaung - u Sawrahan , |king | of Pagan dynasty ( d
## [doc0924]  Chinese warlord and |king | ( b. )              
## [doc0924] nobleman Ordoño II , |king | of Galicia and León 
## [doc0925] atia , is crowned as |king | of Croatia .        
## [doc0925]                      |King | Rudolph II of Burgun
## [doc0925] ancho I is acclaimed |king | of Galicia .        
## [doc0925]             Summer – |King | Fruela              
## [doc0925] amiro ( sons of late |King | Ordoño II ) revolt a
## [doc0925] hal mac Conchobair , |king | of Connacht Fruela I
## [doc0925] ia ( d. ) Conrad I , |king | of Burgundy ( approx
## [doc0925] ecember – Sancho I , |king | of Pamplona December
## [doc0926] undy , be elected as |king | of Italy .          
## [doc0926]  ( d. ) Ordoño III , |king | of León ( approximat
## [doc0926]                      |King | Æthelstan of Wessex 
## [doc0927] not ally with Viking |kings| . [ ]               
## [doc0927]        Wang Yanhan , |king | of Min ( Ten Kingdom
## [doc0927]                      |King | Gyeongae commits sui
## [doc0927] trygg Cáech , Viking |king | of Scandinavian York
## [doc0927] er ( or ) Gyeongae , |king | ( ruler ) of Silla (
## [doc0927]               July – |King | Æthelstan of Wessex 
## [doc0927] laíb Cuarán , Viking |king | of Scandinavian York
## [doc0928] uis Blind , Frankish |king | and Holy Roman Emper
## [doc0928] I ( Blind ) , former |king | of Provence ( Lower 
## [doc0928] cle Jayavarman IV as |king | of Khmer Empire ( mo
## [doc0928] onne in which former |King | Charles III ( Simple
## [doc0928] d. ) Qian Hongzong , |king | of Wuyue ( d. )     
## [doc0928]  Tomislav , duke and |king | of Croatia Wang , em
## [doc0928]                      |King | Rudolph             
## [doc0928]                      |King | Hywel Dda ( Good ) o
## [doc0928]                      |King | Henry I ( Fowler ) s
## [doc0928]  ) Ishanavarman II , |king | of Khmer Empire John
## [doc0928] ust – Qian Hongzuo , |king | of Wuyue ( d. ) Dub 
## [doc0929]     Sancho Ordóñez , |king | of Galicia ( Spain )
## [doc0929] ematician Ashot II , |king | of Armenia ( approxi
## [doc0929]     October – Former |king | Charles III ( Simple
## [doc0929] ptember – Qian Chu , |king | of Wuyue ( d. )     
## [doc0929] ege of Gana : German |king | Henry I ( Fowler ) b
## [doc0929]  Simple ) , Frankish |king | ( b. ) Abu Ali al - 
## [doc0930]  Chinese warlord and |king | ( b. ) Amoghavarsha 
## [doc0931]                      |King | Harald Fairhair of N
## [doc0931]   Hugh of Provence , |king | of Italy , cedes Low
## [doc0931] nesa , an account of |kings| of Asturias and León
## [doc0931] ay – Jimeno Garcés , |king | of Pamplona June –  
## [doc0931]                      |King | Morgan              
## [doc0931] fonso IV and becomes |king | of León ( Northern S
## [doc0931]           Harald I , |king | of Norway ( approxim
## [doc0932] ) Sancho I ( Fat ) , |king | of León ( approximat
## [doc0932]  Chinese warlord and |king | ( b. ) May – Ma Shao
## [doc0932] ugust – Ma Xisheng , |king | of Chu ( b. )       
## [doc0932] r Hugh of Provence , |king | of Italy , after he 
## [doc0933]                      |King | Henry I ( Fowler ) d
## [doc0933] youngest son of late |King | Edward Elder , is dr
## [doc0933]  date ) Alfonso IV , |king | of León and Galicia 
## [doc0933] – Hugh of Provence , |king | of Italy , launches 
## [doc0934]  , Viking leader and |king | of Dublin Li Conghou
## [doc0934] Her son - year - old |King | García Sánchez I bec
## [doc0934]                      |King | Tewdwr of Brycheinio
## [doc0934] od ) , a son of late |King | Harald Fairhair , on
## [doc0934]                      |King | Henry I ( Fowler ) p
## [doc0934] rhair Sale Ngahkwe , |king | of Pagan ( Burma ) U
## [doc0934] akon is installed as |king | of Norway .         
## [doc0935]  Gruffydd ab Owain , |king | of Glywysing ( appro
## [doc0935]                      |King | Gyeon               
## [doc0935]                      |King | Hugh of             
## [doc0935] nd poet Trpimir II , |king | of Croatia ( approxi
## [doc0935]                      |King | Gyeongsun , last rul
## [doc0936] – Hugh of Provence , |king | of Italy , dispatche
## [doc0936] Otto is first German |king | to be crowned in Cha
## [doc0936]                      |King | Æthelstan set border
## [doc0936]       Henry Fowler , |king | of East Frankish Kin
## [doc0936] burg - Bremen visits |king | of Denmark Gorm and 
## [doc0936]          Rudolph I , |king | of West Frankish Kin
## [doc0936]               July – |King | Henry I ( Fowler ) d
## [doc0936] aspurakan , Armenian |king | ( or ) Ibn al - Mugh
## [doc0936] year old son of late |King | Charles Simple , is 
## [doc0936] ugh , whose father , |King | Robert I , was kille
## [doc0937] te date ) David II , |king | of Iberia / Kartli (
## [doc0937]               July – |King | Rudolph II of Burgun
## [doc0937] ngent under Scottish |king | .                   
## [doc0937]                      |King |
## [doc0937]          Gebeachan , |king | of Isles ( Hebrides 
## [doc0937]  ( d . ) Bagrat II , |king | of Iberia and Kartli
## [doc0937]  July – Rudolph II , |king | of Burgundy July –  
## [doc0937] ttle of Brunanburh : |King | Æthelstan defeats a 
## [doc0937]                      |King | Otto I refuses to gi
## [doc0937]                      |King | Hugh of Arles ( king
## [doc0938] r ( d. ) Sancho II , |king | of Navarre ( approxi
## [doc0938]                      |King |
## [doc0939]  Hugh Capet , French |king | and a descendant of 
## [doc0939]          Æthelstan , |king | of England [ ]      
## [doc0939] fter years , becomes |king | of Vietnam .        
## [doc0939]            October – |King | Æthelstan dies at Gl
## [doc0939] blin , is proclaimed |king | of York ( south of N
## [doc0940] wig ( All - Fair ) , |king | of England ( approxi
## [doc0940] elan mac Muiredach , |king | of Leinster ( Irelan
## [doc0941]  , Viking leader and |king | [ ]                 
## [doc0941]        Lothair III , |king | of West Frankish Kin
## [doc0941]   Hugh of Provence , |king | of Italy , leads a f
## [doc0941] ueen Qian Yuanguan , |king | of Wuyue ( b. ) Ruda
## [doc0941] arman IV , Angkorian |king | ( Cambodia ) Muhamma
## [doc0942]          Hywel Dda , |king | of Deheubarth , anne
## [doc0942]         Idwal Foel , |king | of Gwynedd , openly 
## [doc0942]  date ) Idwal Foel , |king | of Gwynedd ( Wales )
## [doc0942] Battle of Fraxinet : |King | Hugh of Provence lau
## [doc0942]                      |King | Edmund              
## [doc0942] Llywelyn ap Merfyn , |king | of Pows , are killed
## [doc0942] s from Norse - Irish |king | Olaf Sigtryggsson . 
## [doc0943] aspurakan , Armenian |king | ( or )              
## [doc0943] chertach mac Néill , |king | of Ailech ( Ireland 
## [doc0943] gar I ( Peaceful ) , |king | of England ( approxi
## [doc0943] chadh mac Murchadh , |king | of Maigh Seóla ( Ire
## [doc0943]                      |King | Edmund I ravages Str
## [doc0944]  Gurjara - Pratihara |king | Ngo Quyen , Vietname
## [doc0944]                  [ ] |King | Edmund              
## [doc0944]  of Aquitanians ' by |king | . [ ]               
## [doc0944] rland to Malcolm I , |king | of ' Picts and Scots
## [doc0944] arman II , Angkorian |king | Li , empress of Min 
## [doc0944]                      |King | Hugh of Provence dis
## [doc0945]            Hyejong , |king | of Goryeo ( Korea ) 
## [doc0945]                      |King | Hugh of Provence lay
## [doc0945] is acclaimed as sole |king | of Lombardia .      
## [doc0945]                      |King | Hywel Dda ( Good ) c
## [doc0945]             Summer – |King | Louis IV ( d' Outrem
## [doc0945]  ) Eric Victorious , |king | of Sweden ( approxim
## [doc0945] nce with Malcolm I ( |king | of ' Picts and Scots
## [doc0945] n Rus ' Krešimir I , |king | of Croatian Kingdom 
## [doc0945]                      |King | Edmund              
## [doc0946]             Summer – |King |
## [doc0946]                May – |King | Edmund I is murdered
## [doc0946] . ) May – Edmund I , |king | of England ( b. )   
## [doc0946] dred ( or Edred ) as |king | of England . [ ]    
## [doc0947] te ) Hugh of Arles , |king | of Italy and Lower B
## [doc0947]                      |King | Otto I cedes Duchy o
## [doc0947]  Raja Raja Chola I , |king | of Chola Kingdom ( d
## [doc0947]       Qian Hongzuo , |king | of Wuyue ( b. )     
## [doc0947]     May – Ma Xifan , |king | of Chu ( Ten Kingdom
## [doc0948]                      |King | Eadred ravages North
## [doc0948]                      |King |
## [doc0948]           February – |King | Qian Hongzong is dep
## [doc0948] mac Gofraid , Viking |king | of Dublin Gormflaith
## [doc0949] e date ) Jeongjong , |king | of Goryeo ( Korea ) 
## [doc0949]                      |King | Miroslav ( or Mirosl
## [doc0949] e date ) Jeongjong , |king | of Goryeo ( Korea ) 
## [doc0950]           November – |King | Lothair II dies at T
## [doc0950] ember – Lothair II , |king | of Italy [ ]        
## [doc0950] Hywel Dda ( Good ) , |king | of Wales Li Jinquan 
## [doc0950]  Berengar is crowned |king | of Italy and impriso
## [doc0950]                      |King | Hywel Dda ( Good ) d
## [doc0950]       The Tu'i Tonga |kings| establish capital at
## [doc0951]  a peace in with new |king | of León , Ordo ño II
## [doc0951] s Cadwgan ab Owain , |king | of Glywysing ( Wales
## [doc0951]                      |King |
## [doc0951] mac Sitriuc , Viking |king | of Dublin ( Ireland 
## [doc0951] nnétig mac Lorcáin , |king | of Tuadmumu ( Irelan
## [doc0951] anuary – Ramiro II , |king | of León and Galicia 
## [doc0951]                      |King | Berengar            
## [doc0952] any Constantine II , |king | of Alba ( Scotland )
## [doc0952]                      |King | Constantine II dies 
## [doc0952] any Constantine II , |king | of Alba ( Scotland )
## [doc0953]  chancellor Abas I , |king | of Bagratuni Dynasty
## [doc0953] atician Bermudo II , |king | of León and Galicia 
## [doc0953] on Rhodri ap Hywel , |king | of Deheubarth ( Wale
## [doc0954] ) , Norwegian Viking |king | Frederick , archbish
## [doc0954]  ( d. ) Malcolm II , |king | of Alba ( Scotland )
## [doc0954] hern Han Malcolm I , |king | of Alba ( Scotland )
## [doc0954]                      |King | Malcolm             
## [doc0954] y of Saint - Remi as |king | of West Frankish Kin
## [doc0954]          September – |King | Louis IV ( d' Outrem
## [doc0954] ptember – Louis IV , |king | of West Frankish Kin
## [doc0954]                  [ ] |King | Eric                
## [doc0955] Battle of Lechfeld : |King | Otto I ( Great ) def
## [doc0955]           November – |King | Eadred ( or Edred ) 
## [doc0955] adred ( or Edred ) , |king | of England ( b. )   
## [doc0955] Kunhsaw Kyaunghpyu , |king | of Pagan dynasty ( d
## [doc0955] ober – Qian Weijun , |king | of Wuyue ( Ten Kingd
## [doc0955] Lombard margrave and |king | of Italy ( approxima
## [doc0956] ugust – Ordoño III , |king | of León [ ]         
## [doc0956] cousin Lothair III , |king | of West Frankish Kin
## [doc0956]                      |King | Ordo ño III dies at 
## [doc0957] ain ) [ ] Arinjaya , |king | of Chola Kingdom ( I
## [doc0957] e unknown Arinjaya , |king | of Chola Kingdom ( I
## [doc0958]                      |King | Ksemagupta dies of a
## [doc0958] hist monk Sumbat I , |king | of Iberia ( Georgia 
## [doc0958] hist monk Sumbat I , |king | of Iberia ( Georgia 
## [doc0958]                  [ ] |King | Berengar            
## [doc0958]           Gorm Old , |king | of Denmark .        
## [doc0958]           Gorm Old , |king | of Denmark .        
## [doc0959] - Ö , Tibetan lama - |king | ( approximate date )
## [doc0959] adwig ( All Fair ) , |king | of England October –
## [doc0959]        His brother , |King |
## [doc0959] nchadh mac Urchadh , |king | of Maigh Seóla ( Ire
## [doc0959]            October – |King | Eadwig dies after a 
## [doc0960] Murchadh mac Aodha , |king | of Uí Maine ( Irelan
## [doc0960]  ) Sweyn Forkbeard , |king | of Denmark and Engla
## [doc0960]         Indra Pala , |king | of Kamarupa ( India 
## [doc0960]  ( or ) Bagrat III , |king | of Abkhazia ( Georgi
## [doc0960]         Ratna Pala , |king | of Kamarupa ( India 
## [doc0960]   Harald Bluetooth , |king | of Denmark , consoli
## [doc0960] hachen Dpalgyimgon , |king | of Mauyul ( Tibet ) 
## [doc0960] bleman Gao Baorong , |king | of Nanping ( Ten Kin
## [doc0961]                      |King | Haakon Good defeats 
## [doc0961] e poet Haakon Good , |king | of Norway Landulf II
## [doc0961] usoleum of Bagratuni |kings| . [ ]               
## [doc0961]                      |King | Ashot III of Armenia
## [doc0961]       ) Ramiro III , |king | of León ( Spain ) ( 
## [doc0962]             Indulf , |king | of Scots and Picts ,
## [doc0962]           February – |King | Otto I ( Great ) is 
## [doc0962] e date ) Gao Baoxu , |king | of Nanping ( China )
## [doc0962] dulf ( Aggressor ) , |king | of Scotland Liu Cong
## [doc0962]          Ordoño IV , |king | of León ( or )      
## [doc0962] ward II ( Martyr ) , |king | of England ( approxi
## [doc0963]  Ordoño IV ( Bad ) , |king | of León ( or ) Rudol
## [doc0963]                      |King | Berengar II ( father
## [doc0963] had mac Cellacháin , |king | of Munster ( Ireland
## [doc0964]             Spring – |King |
## [doc0964] ichleach ua Gadhra , |king | of Gailenga ( Irelan
## [doc0965]             Spring – |King | Lothair III exploits
## [doc0966]             Spring – |King | Lothair III marries 
## [doc0966]           Sa<U+1E43>bhava , |king | of Khotan ( China ) 
## [doc0966] ar II , margrave and |king | of Italy December – 
## [doc0966] red II ( Unready ) , |king | of England ( approxi
## [doc0966] ( d. ) Kenneth III , |king | of Scotland ( approx
## [doc0967] ub mac Maíl Coluim , |king | of Alba ( Scotland )
## [doc0967]   Fergal ua Ruairc , |king | of Connacht ( Irelan
## [doc0967] bbey in Hampshire by |King | Edgar I ( Peaceful )
## [doc0967] leslaw I ( Brave ) , |king | of Poland ( d . )   
## [doc0969] ichael Krešimir II , |king | of Croatia ( House o
## [doc0970] ( d. ) Rudolph III , |king | of Burgundy ( approx
## [doc0970]  ) Constantine III , |king | of Scotland ( approx
## [doc0970] d II ( Greycloak ) , |king | of Norway Hasdai ibn
## [doc0970] ebruary – García I , |king | of Pamplona June – A
## [doc0970] first ( documented ) |king | of Sweden in Uppland
## [doc0971]                      |King | Cuilén ( or Cuilean 
## [doc0971] isor Qian Hongzong , |king | of Wuyue ( approxima
## [doc0971]  He will not be sole |king | until .             
## [doc0971] lén ( or Cuilean ) , |king | of Alba ( Scotland )
## [doc0972] obert II ( Pious ) , |king | of France ( d. ) Abd
## [doc0973] an Cathal mac Tadg , |king | of Connacht ( Irelan
## [doc0973] eaceful ) is crowned |king | during a royal cerem
## [doc0973] Conchobar mac Tadg , |king | of Connacht Geibenna
## [doc0974]                      |King | Edgar               
## [doc0975] ( Wang So ) , Korean |king | ( b. )              
## [doc0975] gar I ( Peaceful ) , |king | of England July – Fu
## [doc0975] d. ) [ ] Stephen I , |king | of Hungary ( approxi
## [doc0975]               July – |King | Edgar I ( Peaceful )
## [doc0975]  alchemist Olof II , |king | of Sweden ( approxim
## [doc0975] t Dyfnwal ab Owain , |king | of Strathclyde Gu Ho
## [doc0976] amain mac Cennétig , |king | of Munster Pietro IV
## [doc0977] gitimate son of late |King | Louis IV ( d' Outrem
## [doc0977]                      |King | Lothair III – who cl
## [doc0977]                      |King | Kenneth II of Scotla
## [doc0977] t III ( Merciful ) , |king | of Armenia Bisutun ,
## [doc0977] Amlaíb mac Illuilb , |king | of Alba ( Scotland )
## [doc0978] mhaltan Ua Clerigh , |king | of Hy Fiachrach ( Ir
## [doc0978] ch – Edward Martyr , |king | of English [ ]      
## [doc0978] nready ) who becomes |king | of England .        
## [doc0978] e date ) Gyeongsun , |king | of Silla ( Korea ) (
## [doc0978] e date ) Gyeongsun , |king | of Silla ( Korea ) (
## [doc0978]              March – |King | Edward II ( Martyr )
## [doc0978]               June – |King | Qian                
## [doc0978] mhaltan Ua Clerigh , |king | of Hy Fiachrach ( Ir
## [doc0979]      Iago ab Idwal , |king | of Gwynedd [ ]      
## [doc0980]                      |King | Harald Bluetooth ord
## [doc0980]     July – Mokjong , |king | of Goryeo ( Korea ) 
## [doc0980]  ) Olof Skötkonung , |king | of Sweden ( approxim
## [doc0981]      Ramiro Garcés , |king | of Viguera ( Spain )
## [doc0982]  al - Dawla , emir ( |king | of kings ) of Buyid 
## [doc0982]                      |King | Harald Bluetooth inv
## [doc0983]                      |King | Harald Bluetooth reb
## [doc0983]      Aed Ua Dubhda , |king | of Uí Fiachrach ( Ir
## [doc0983]  Otto III is elected |king | of Germany and Italy
## [doc0984]                      |King | Ramiro III of León l
## [doc0984] asty Domnall Claen , |king | of Leinster ( Irelan
## [doc0984] pring – German boy - |king | Otto III ( years old
## [doc0985] irgus mac Domnaill , |king | of Uí Maine ( Irelan
## [doc0985] d II ( Bluetooth ) , |king | of Denmark and Norwa
## [doc0985]     Hywel ap Ieuaf , |king | of Gwynedd ( Wales )
## [doc0985]                      |King | Otto III ( - years o
## [doc0985]  June – Ramiro III , |king | of León ( Spain ) ( 
## [doc0985]                      |King | Eric Victorious defe
## [doc0986]              March – |King | Lothair III ( or Lot
## [doc0986] arch – Lothair III , |king | of West Frankish Kin
## [doc0986]                      |King | Harald II ( Bluetoot
## [doc0986] Cadwallon ab Ieuaf , |king | of Gwynedd ( Wales )
## [doc0986] Cadwallon ab Ieuaf , |king | of Gwynedd ( Wales )
## [doc0986] iver after defeating |King | Jayapala .          
## [doc0987] eman May – Louis V , |king | of West Frankish Kin
## [doc0987] ter last Carolingian |king | of West Francia , Lo
## [doc0988] ( Idwal ab Idwal ) , |king | of Gwynedd ( Wales )
## [doc0988] nger brother of late |King | Lothair of France ) 
## [doc0988]                      |King | Bermudo II escapes t
## [doc0988]          Stephen I , |king | of Croatia ( approxi
## [doc0988] October – Qian Chu , |king | of Wuyue ( d. ) Bagr
## [doc0988]                      |King |
## [doc0989]          Kiurike I , |king | of Tashir - Dzoraget
## [doc0989]                      |King | Hugh I ( Capet ) , d
## [doc0989] iairn , Norse - Gael |king | of Dublin ( approxim
## [doc0990]         Mieszko II , |king | of Poland ( approxim
## [doc0990] ring reign of Danish |king | Sweyn Forkbeard ( ap
## [doc0990] nd II ( Ironside ) , |king | of England ( d. )   
## [doc0991] tesman Qian Weijun , |king | of Wuyue ( Ten Kingd
## [doc0991] pher Ashot - Sahak , |king | of Vaspurakan ( Arme
## [doc0992] August – Hyeonjong , |king | of Goryeo ( Korea ) 
## [doc0993] apua Maelcairearda , |king | of Uí Briúin ( Irela
## [doc0993] g – The - year - old |King | Otto III gives Sword
## [doc0993]           Conrad I , |king | of Burgundy December
## [doc0994] lfonso V ( Noble ) , |king | of León ( Spain ) ( 
## [doc0994]                      |King | Æthelred II ( Unread
## [doc0994] gensburg Bagrat II , |king | of Iberia - Kartli (
## [doc0994] , ( probably ) under |King | Sweyn Forkbeard , pl
## [doc0994]                      |King | Otto III , now years
## [doc0994] ncho III ( Great ) , |king | of Pamplona ( approx
## [doc0994] ) Sancho Garcés II , |king | of Navarre ( Spain )
## [doc0995]                      |King | Seongjong accepts   
## [doc0995] ictorious ) , Viking |king | of Sweden García Fer
## [doc0995]                      |King | Kenneth             
## [doc0995]                  [ ] |King | Eric VI ( Victorious
## [doc0995]  II ( Fratricide ) , |king | of Alba ( Scotland )
## [doc0995] sson ( St . Olaf ) , |king | of Norway ( d. ) Reg
## [doc0995] . ) Cnut ( Great ) , |king | of Denmark , Norway 
## [doc0995] ryggvason is crowned |king | of Norway ( until ) 
## [doc0996] bert II ( Pious ) as |king | of France .         
## [doc0996] raic mac Donnchada , |king | of Osraige ( Ireland
## [doc0996] ber – Hugh I Capet , |king | of France ( b. )    
## [doc0996]            October – |King | Hugh I Capet dies in
## [doc0996]             Spring – |King |
## [doc0997]  ) Idwal ap Meurig , |king | of Gwynedd ( Wales )
## [doc0997] – Seongjong , Korean |king | ( b. )              
## [doc0997] lav ( Dirzislaus ) , |king | of Croatia Tailapa I
## [doc0997]                      |King | Stephen Držislav of 
## [doc0997]                      |King | Constantine III dies
## [doc0997] an Constantine III , |king | of Alba ( Scotland )
## [doc0997] . ) Rhys ap Tewdwr , |king | of Deheubarth ( d. )
## [doc0998]                      |King | Robert II ( Pious ) 
## [doc0999] ined fleet of Danish |king | Sweyn Forkbeard and 
## [doc0999]                      |King | Bermudo II abdicates
## [doc0999]  Maredudd ab Owain , |king | of Gwynedd ( Wales )
## [doc0999] Muirgheas mac Aedh , |king | of Uí Díarmata ( Ire
## [doc1000]       On September , |King | of Norway , Olaf Try
## [doc1000] ason ( or Olaf I ) , |king | of Norway Abu'l Hare
## [doc1000] pher Kyiso , Burmese |king | of Pagan Dynasty ( d
## [doc1000] gh Capet , was first |King | of Capetian royal dy
## [doc1001]  – Sokkate , Burmese |king | ( d. ) Al - Qa 'im ,
## [doc1001]                Khmer |King |
## [doc1001]          Robert II , |King | of France , marries 
## [doc1001]                      |King | Edward Martyr of Eng
## [doc1002]         Brian Boru , |king | of Leinster and Muns
## [doc1002] n ( d . ) George I , |king | of Georgia ( approxi
## [doc1002]                      |King |
## [doc1002] a ) Sancho Ramírez , |king | of Viguera ( approxi
## [doc1003] ) Edward Confessor , |king | of England ( d . ) F
## [doc1003]                      |King |
## [doc1003]                      |King | Robert II ( Pious ) 
## [doc1003]          Gurgen IV , |king | of Vaspurakan ( Arme
## [doc1003] n mac Maelruanaidh , |king | of Maigh Seóla ( Ire
## [doc1003]                      |King | Rudolph III of Burgu
## [doc1004] agnall mac Gofraid , |king | of Isles ( or )     
## [doc1004]             Spring – |King |
## [doc1004]  Henry II is crowned |King | of Italy by Archbish
## [doc1004] eburg Khusrau Shah , |king | of Justanids ( appro
## [doc1004]   Sancho III becomes |king | of Pamplona , Aragon
## [doc1005]                 High |King | of Ireland Brian Bor
## [doc1005] eircc , Red King ) , |king | of Scotland ( approx
## [doc1005]              March – |King | Kenneth III of Scotl
## [doc1005] Ruanaidh Ua Dubhda , |king | of Connacht Ma Yize 
## [doc1007]           November – |King | Henry               
## [doc1007]                      |King |
## [doc1007]  Hugues le Grand ) , |king | of France ( d. ) Ibn
## [doc1008]                      |King |
## [doc1008] dan mac Gadhra Mór , |king | of Síol Anmchadha Po
## [doc1008] n II ( Magistros ) , |king | of Iberia - Kartli (
## [doc1008]  ] Olof Skötkonung , |king | of Sweden , is bapti
## [doc1008]  Haraldsson , future |king | of Norway , makes ra
## [doc1008]      May – Henry I , |king | of France ( d .     
## [doc1009] rdelbach Ua Briain , |king | of Munster ( d . )  
## [doc1009] op March – Mokjong , |king | of Goryeo ( Korea ) 
## [doc1010] onchobar mac Taidg , |king | of Connacht Ermengol
## [doc1010]           The Goryeo |king | is unseated in a rev
## [doc1011]                      |King |
## [doc1012] García Sánchez III , |king | of Pamplona ( approx
## [doc1012]                      |King |
## [doc1012]                      |King | Malcolm             
## [doc1013]                      |King |
## [doc1013]                      |King | Henry II of Germany 
## [doc1013] aw and is proclaimed |king | of England in London
## [doc1014] d ( II The Unready , |King | of English 978-1013 
## [doc1014] hg Mór Ua Cellaigh , |king | of Uí Maine Brian Bo
## [doc1014]              March – |King |
## [doc1014]  Raja Raja Chola I , |king | of Chola dynasty ( I
## [doc1014]  . ) Cynan ab Iago , |king | of Gwynedd ( approxi
## [doc1014]           February – |King | Sweyn Forkbeard dies
## [doc1014]           February – |King | Henry II arrives at 
## [doc1014] arald II who becomes |king | of Denmark , while C
## [doc1015] rew I ( Catholic ) , |king | of Hungary ( d .    
## [doc1015]  ) Harald Hardrada , |king | of Norway ( d .     
## [doc1015]  – Arduin of Ivrea , |king | of Italy ( b. )     
## [doc1015] date ) Ferdinand I , |king | of León and Castile 
## [doc1015]   Owain ap Dyfnwal , |king | of Strathclyde ( Sco
## [doc1015]   Owain ap Dyfnwal , |king | of Strathclyde ( Sco
## [doc1015]                      |King |
## [doc1016]   Æthelred Unready , |king | of England , dies af
## [doc1016] irming his status as |king | of Norway .         
## [doc1016] mund II Ironside ) , |king | of England Badis ibn
## [doc1016]     Svein Knutsson , |king | of Norway ( d. )    
## [doc1016]  , leaving latter as |king | of Wessex. [ ] Novem
## [doc1016]   Æthelred Unready , |king | of England May – Jov
## [doc1016] efeat fleet of taifa |king | of Dénia , Mujahid a
## [doc1017] III ( or Vermudo ) , |king | of León ( approximat
## [doc1017] ( Great ) is crowned |king | of England .        
## [doc1018] achlumia Harald II , |king | and regent of Denmar
## [doc1018] eddan ap Blegywryd , |king | of Gwynedd Adolf I o
## [doc1018] Bagrat IV , Georgian |king | of Bagrationi dynast
## [doc1018]                      |King | Malcolm             
## [doc1018]     Cnut ( Great ) , |King | of England , travels
## [doc1019]  II ( Estridsson ) , |king | of Denmark ( approxi
## [doc1020]                      |King | Gagik               
## [doc1020]                      |King | Canute Great codifie
## [doc1020]            Gagik I , |king | of Bagratid Armenia 
## [doc1021] n ) Trilochanapala , |king | of Kabul Shani dynas
## [doc1021] Hovhannes Artsruni , |king | of Vaspurakan ( Grea
## [doc1021] e ) Mac Cú Ceanain , |king | of Uí Díarmata ( Ire
## [doc1021]  becoming concurrent |king | of outlying territor
## [doc1022]                      |King | Olof Skötkonung dies
## [doc1022]                      |King | George              
## [doc1022] Council of Orléans , |King | Robert II of France 
## [doc1022]    Olof Skötkonung , |king | of Sweden Rededya , 
## [doc1022] mes second Christian |king | of Swedish realm .  
## [doc1022]        ) Harold II , |king | of England ( approxi
## [doc1023] lywelyn ap Seisyll , |king | of Gwynedd and Powys
## [doc1024]  d . ) Magnus Good , |king | of Norway ( d. ) Apr
## [doc1025] mber – Hugh Magnus , |king | of France ( b. )    
## [doc1025]  in Gniezno as first |king | of Poland .         
## [doc1025] – Boleslaw I Brave , |king | of Poland ( b. )    
## [doc1025] aw I , is crowned as |king | of Poland by archbis
## [doc1025]  Ua Cleirigh , Irish |king | Sabur ibn Ardashir ,
## [doc1026]             Spring – |King | Conrad II , Elder , 
## [doc1026] rchbishop Aribert as |king | of Lombards .       
## [doc1027] ra Mór mac Dundach , |king | of Uí Maine ( Irelan
## [doc1027]  – Bagrat IV becomes |king | of Georgia on death 
## [doc1027]                May – |King | Robert II of France 
## [doc1027]  August – George I , |king | of Georgia ( House o
## [doc1027] Dogra mac Dúnadach , |king | of Síol Anmchadha ( 
## [doc1027]                      |King | Sigtrygg Silkbeard o
## [doc1028] dsson and is crowned |king | of Norway .         
## [doc1028] lfonso V ( Noble ) , |king | of León ( Spain ) ( 
## [doc1028]  elected and crowned |king | of Germany in Aachen
## [doc1028] am I ( Conqueror ) , |king | of England ( approxi
## [doc1028]                      |King | Sancho Garcés III ( 
## [doc1030] orvegiae ( ' eternal |king | of Norway ' ) .     
## [doc1030]                      |King |
## [doc1030] ttle of Stiklestad : |King | Olaf II Haraldsson (
## [doc1030]       Krešimir III , |king | of Croatia ( Trpimir
## [doc1030]  July – Kyansittha , |king | of Pagan Empire ( Bu
## [doc1030] sson ( St . Olaf ) , |king | of Norway Torstein K
## [doc1031] obert II ( Pious ) , |king | of France ( b. ) Aug
## [doc1031] lm III ( Canmore ) , |king | of Scotland ( d. ) H
## [doc1031]               July – |King | Robert II ( Pious ) 
## [doc1031]          Hyeonjong , |king | of Goryeo ( Korea ) 
## [doc1032] ral Gille Coemgáin , |king | of Moray ( Scotland 
## [doc1032]          September – |King | Rudolph III dies wit
## [doc1032]  ( or Wratislaus ) , |king | of Bohemia ( d . ) J
## [doc1032] onald III ( Fair ) , |king | of Scotland ( approx
## [doc1033] hydderch ap Iestyn , |king | of Gwent and Deheuba
## [doc1034] iuc , Norse - Gaelic |king | of Dublin Bernard Ro
## [doc1034]           November – |King | Malcolm             
## [doc1034] ember – Malcolm II , |king | of Alba ( Scotland )
## [doc1034]                      |King | Sancho III ( Great )
## [doc1034]                      |King |
## [doc1035]           November – |King |
## [doc1035] ncho III ( Great ) , |king | of Pamplona November
## [doc1035]     Svein Knutsson , |king | of Norway and son of
## [doc1035]            October – |King | Sancho III of Pamplo
## [doc1037] III ( or Vermudo ) , |king | of León November –  
## [doc1037]                      |King | Henry III ( eldest s
## [doc1037]                      |King | Harold              
## [doc1037] eas ua Cú Ceanainn , |king | of Uí Díarmata Rober
## [doc1037]    Ferdinand becomes |king | of Castile and León 
## [doc1038]      Kyiso , Burmese |king | of Pagan Dynasty Ral
## [doc1038] August – Stephen I , |king | of Hungary November 
## [doc1039] e date ) Sancho IV , |king | of Pamplona ( approx
## [doc1039] ) , who also becomes |king | of Italy and Burgund
## [doc1040]  Géza I ( Magnus ) , |king | of Hungary ( approxi
## [doc1040] date ) Ladislaus I , |king | of Hungary ( approxi
## [doc1040]  – Harold Harefoot , |king | of England [ ]      
## [doc1040] - Ö , Tibetan lama - |king | ( approximate date )
## [doc1040]              March – |King | Harold Harefoot dies
## [doc1040]             August – |King | Duncan              
## [doc1040]  date ) Alfonso VI , |king | of León and Castile 
## [doc1040]  who succeeds him as |king | of Scotland .       
## [doc1040]  August – Duncan I , |king | of Scotland [ ]     
## [doc1041] ahu ( or Kassapa ) , |king | of Sri Lanka ( b. ) 
## [doc1041] ld Hardrada ( future |king | of Norway ) , defeat
## [doc1041] ther Harthacnut , as |king | of England .        
## [doc1042] rd Confessor becomes |king | of England .        
## [doc1042]               June – |King | Harthacnut collapses
## [doc1042]  Magnus Good becomes |king | of Denmark after dea
## [doc1042]  June – Harthacnut , |king | of Denmark and Engla
## [doc1042] leslaw II Generous , |king | of Poland ( approxim
## [doc1042] ai ( d. ) Sancho V , |king | of Aragon and Pamplo
## [doc1043] athal mac Ruaidhri , |king | of Maigh Seóla ( Ire
## [doc1043] Confessor is crowned |king | of England at Winche
## [doc1043] int Hywel ab Owain , |king | of Glywysing ( Wales
## [doc1043]       [ ] November – |King | Henry III ( Black ) 
## [doc1043]            The first |king | of Kingdom of Nri , 
## [doc1044] l Aba , palatine and |king | of Hungary August – 
## [doc1044] ahaearn ap Caradog , |king | of Gwynedd ( d . ) W
## [doc1044] erman troops , under |King | Henry III ( Black ) 
## [doc1044]  ( for second time ) |king | of Hungary , and a v
## [doc1044]             August – |King | Anawrahta seizes of 
## [doc1045] – Edward Confessor , |King | of England , marries
## [doc1046] une – Jeongjong II , |king | of Goryeo ( b. )    
## [doc1046]  Uallach Ua Ruairc , |king | of Connacht Bystrík 
## [doc1046]             Revolt : |King | Peter Orseolo ( Vene
## [doc1046]             Autumn – |King | Henry III ( Black ) 
## [doc1046]   Munjong is crowned |king | of Goryeo ( Korea ) 
## [doc1047] drada ) becomes sole |king | of Norway , on death
## [doc1047] ipa Kama II , Indian |king | ( Hoysala Empire ) [
## [doc1047]  Magnus I ( Good ) , |king | of Norway [ ] [ ] [ 
## [doc1048]  II ( Haraldsson ) , |king | of Norway ( approxim
## [doc1048]                      |King | Edward Confessor goe
## [doc1048] abhaill Ua hEidhin , |king | of Hy Fiachrach Rain
## [doc1049] mate date ) Saw Lu , |king | of Pagan Kingdom ( d
## [doc1049] October – Seonjong , |king | of Goryeo ( d . ) Go
## [doc1050] [ ] Lhachen Gyalpo , |king | of Ladakh ( approxim
## [doc1050] Jacob ( or James ) , |king | of Sweden ( b. ) [ ]
## [doc1050] brother Emund Old as |king | of Sweden . [ ] [ ] 
## [doc1050]  Olaf I ( Hunger ) , |king | of Denmark ( approxi
## [doc1050] chertach Ua Briain , |king | of Munster ( approxi
## [doc1050]      Suryavarman I , |king | of Khmer Empire [ ] 
## [doc1051]                      |King |
## [doc1051] Ætheling , uncrowned |king | of England ( d. c. )
## [doc1052] ilip I ( Amorous ) , |king | of France ( d. ) Agn
## [doc1053] mon ( or Salomon ) , |king | of Hungary ( d . ) T
## [doc1054]        Lý Nh<U+1EAD>t Tôn , |king | of Lý Dynasty , begi
## [doc1054]                      |King |
## [doc1054] García Sánchez III , |king | of Pamplona ( b. c.1
## [doc1054] orge II ( Giorgi ) , |king | of Georgia ( approxi
## [doc1055]                      |King | Ferdinand I ( Great 
## [doc1055]                      |King | Andrew I ( Catholic 
## [doc1055]  Gruffudd ap Cynan , |king | of Gwynedd ( approxi
## [doc1055] ffydd ap Rhydderch , |king | of Deheubarth Mauger
## [doc1055] s himself with Welsh |king | Gruffydd ap Llywelyn
## [doc1056] only son Henry IV as |king | of Germans and enthr
## [doc1056] or William Rufus ) , |king | of England ( d . ) Z
## [doc1057]                      |King | Anawrahta captures T
## [doc1057] attle of Lumphanan : |King | Macbeth ( Red King )
## [doc1057] ly on September ) as |king | of Scotland at Scone
## [doc1057]                      |King | Ferdinand I ( Great 
## [doc1057]                      |King |
## [doc1057] h August – Macbeth , |king | of Scotland ( b. bef
## [doc1058]              March – |King | Lulach ( Unfortunate
## [doc1058] ch ( Unfortunate ) , |king | of Scotland [ ]     
## [doc1059] ( Great ) is crowned |king | of Croatia and Dalma
## [doc1059] athal mac Tigernán , |king | of Iar Connacht Eili
## [doc1060]             August – |King | Henry I ( a member f
## [doc1060]  ] Abbas ibn Shith , |king | ( malik ) of Ghurid 
## [doc1060] lip I ( Amorous ) as |king | of France .         
## [doc1060] hampion ) is crowned |king | of Hungary after his
## [doc1060] rew I ( Catholic ) , |king | of Hungary [ ] [ ] [
## [doc1060] ] August – Henry I , |king | of France ( b. ) [ ]
## [doc1060]          Emund Old , |king | of Sweden ( approxim
## [doc1060] Diarmait Ua Briain , |king | of Munster ( d. ) [ 
## [doc1060]    Eric I ( Good ) , |king | of Denmark ( approxi
## [doc1061] a Flaithbheartaigh , |king | of Iar Connacht Song
## [doc1062] h : The - year - old |King | Henry IV is abducted
## [doc1063] stian troops , under |King | Sancho II ( Strong )
## [doc1063] éla I ( Champion ) , |king | of Hungary December 
## [doc1063]                      |King | Ramiro I is killed a
## [doc1063]     May – Ramiro I , |king | of Aragon ( House of
## [doc1064]             Summer – |King | Ferdinand I ( Great 
## [doc1064]                      |King | Bagrat              
## [doc1065]           December – |King | Ferdinand I ( Great 
## [doc1065] dinand I ( Great ) , |king | of León and Castile 
## [doc1065] ls ( or Nicholas ) , |king | of Denmark ( d. ) Ri
## [doc1066] ardrada , is crowned |king | of Norway .         
## [doc1066] rold II ) is crowned |king | of England , probabl
## [doc1066] Harold Godwinson ) , |king | of England Leofwine 
## [doc1066] heling is proclaimed |king | of England ( but is 
## [doc1066] r , he is crowned as |king | William I of England
## [doc1066] – Edward Confessor , |king | of England [ ]      
## [doc1066]  Harald Hardrada ) , |king | of Norway Tostig God
## [doc1066] ims Harold Godwinson |king | of England .        
## [doc1066]                      |King | Stenkil ( or Steinke
## [doc1067] ats of government of |kings| ruling England . [ ]
## [doc1067] alsten , son of late |King | Stenkil , becomes ne
## [doc1067]             Spring – |King | William I ( Conquero
## [doc1067] dh Ua Con Ceanainn , |king | of Uí Díarmata Bahma
## [doc1067]     He is proclaimed |king | and co-ruler with hi
## [doc1068] on ( Toresfostre ) , |king | of Norway ( d . ) He
## [doc1068]     Vijayaditya VI , |king | of Eastern Chalukyas
## [doc1069] - Mu'tadid , Abbadid |king | April – Magnus II ( 
## [doc1069]                      |King | Sweyn               
## [doc1069]           February – |King | Abbad II al - Mu'tad
## [doc1069] on ap Cynfyn , Welsh |king | ( b. c.1020 )       
## [doc1070]             Spring – |King | Sweyn II joins Engli
## [doc1070] ilsson is deposed as |king | of Sweden , with Håk
## [doc1070] oloman ( Learned ) , |king | of Hungary ( d. ) Eu
## [doc1072] – Alfonso VI becomes |king | of León and Castile 
## [doc1072] ctober – Sancho II , |king | of Castile and León 
## [doc1072]                      |King | William I ( Conquero
## [doc1072]                      |King | Sancho II ( Strong )
## [doc1072] it mac Máel na mBó , |king | of Leinster February
## [doc1073] s ibn Habus , Berber |king | of Taifa of Granada 
## [doc1073]            [ ] May – |King | Sancho IV of Navarre
## [doc1073] onso I ( Battler ) , |king | of Aragon ( approxim
## [doc1074]  Peter Krešimir IV , |king | of Croatia ( or )   
## [doc1074]                      |King | Solomon is defeated 
## [doc1074] bruary – Conrad II , |king | of Germany ( d. ) [ 
## [doc1075] šimir IV ( Great ) , |king | of Croatia ( or )   
## [doc1075] ) Jaya Pala , Indian |king | of Kamarupa ( d . ) 
## [doc1075] årdske is deposed as |king | of Svealand ( also c
## [doc1075] algaidh mac Cathal , |king | of Maigh Seóla Anne 
## [doc1075]                      |King | Håkan Red of Götalan
## [doc1075] laíb meic Ragnaill , |king | of Dublin Gundekar I
## [doc1076] onimir is crowned as |king | of Croatia in Solin 
## [doc1076]          Sancho IV , |king | of Pamplona ( or Nav
## [doc1076] ara II , and becomes |king | of Western Chalukya 
## [doc1076]  II ( Estridsson ) , |king | of Denmark May –    
## [doc1076] rous ) is crowned as |king | of Poland by Archbis
## [doc1077]  Géza I ( Magnus ) , |king | of Hungary October –
## [doc1077]                      |King | Mihailo I is given t
## [doc1077]                      |King | Alfonso VI ( Brave )
## [doc1077] rman nobles opposing |king | Henry IV elected an 
## [doc1078] ander I ( Fierce ) , |king | of Scotland ( d. ) A
## [doc1078] rnor Rhys ab Owain , |king | of Deheubarth Richar
## [doc1079]                      |King | William Conqueror es
## [doc1079] enkilsson returns as |king | of Sweden , jointly 
## [doc1079]  February – Yejong , |king | of Goryeo ( d. )    
## [doc1079] a Flaithbheartaigh , |king | of Iar Connacht Al -
## [doc1079] and poet Håkan Red , |king | of Sweden ( approxim
## [doc1080]                      |King | Alfonso VI ( Brave )
## [doc1080]                      |King | William I ( Conquero
## [doc1080] April – Harald III , |king | of Denmark ( b. )   
## [doc1080] chen Gyalpo , Indian |king | of Ladakh ( b. ) Mic
## [doc1080]              April – |King | Harald III dies afte
## [doc1080] ld Kesja ( Spear ) , |king | of Denmark ( d. )   
## [doc1080] chen Utpala , Indian |king | of Ladakh ( d. ) Mag
## [doc1081]            Mihailo ( |King | of Slavs ) , king of
## [doc1081]   Louis VI ( Fat ) , |king | of France ( approxim
## [doc1081]                      |King | William I ( Conquero
## [doc1081]                      |King | Mihailo ( King of Sl
## [doc1081] aw II ( Generous ) , |king | of Poland ( or ) Car
## [doc1081]                      |King | Alfonso VI ( Brave )
## [doc1082] aw II ( Generous ) , |king | of Poland ( or )    
## [doc1083]                      |King | Sancho Ramírez of Pa
## [doc1083]                      |King | William I ( Conquero
## [doc1083] orra , child of late |King | García Sánchez III o
## [doc1084]              April – |King | Kyansittha begins hi
## [doc1084]             Saw Lu , |king | of Pagan Kingdom ( b
## [doc1084] hsartan I , Georgian |king | of Kakheti and Heret
## [doc1084]                      |King | Halsten Stenkilsson 
## [doc1084] ers ( d. ) David I , |king | of Scotland ( approx
## [doc1084]  – Heonjong , Korean |king | of Goryeo ( d . ) Al
## [doc1085] av I , becomes first |king | of Bohemia and is el
## [doc1085]                May – |King | Alfonso VI ( Brave )
## [doc1086] Canute IV ( Holy ) , |king | of Denmark July – To
## [doc1086] Ramiro II ( Monk ) , |king | of Aragon ( d. ) Aug
## [doc1086]         [ ] August – |King | William I ( Conquero
## [doc1087] Yemen Blot - Sweyn , |king | of Svealand ( approx
## [doc1087]          September – |King | William I ( Conquero
## [doc1087] in proclaims himself |king | of Sweden ( approxim
## [doc1087] mon ( or Salomon ) , |king | of Hungary ( b. ) Ya
## [doc1087] lliam II who becomes |king | of England .        
## [doc1087] am I ( Conqueror ) , |king | of England [ ]      
## [doc1088] d ap Bleddyn , Welsh |king | of Powys ( b. )     
## [doc1088] bach Ua Conchobair , |king | of Connacht ( d. ) W
## [doc1088]  William as rightful |king | of England .        
## [doc1089] Demetrius Zvonimir , |king | of Croatia and Dalma
## [doc1089]                      |King | Demetrius Zvonimir o
## [doc1089]                      |King | George              
## [doc1089] urd I ( Crusader ) , |king | of Norway ( d. ) Wul
## [doc1090] laungsithu , Burmese |king | of Pagan Dynasty ( d
## [doc1090] laungsithu , Burmese |king | of Pagan Dynasty ( d
## [doc1090] c II ( Memorable ) , |king | of Denmark ( approxi
## [doc1090]                      |King | Stephen             
## [doc1090]  March – García II , |king | of Galicia and Portu
## [doc1091]                      |King | William II invades N
## [doc1091] a Flaithbheartaigh , |king | of Iar Connacht Robe
## [doc1091]                      |King | Ladislaus           
## [doc1091]             Spring – |King | Stephen II , last me
## [doc1091]             Summer – |King | Malcolm III of Scotl
## [doc1091] He proclaims himself |king | , but is contested b
## [doc1092]             Summer – |King | William II annexes C
## [doc1092] Fulk V ( Younger ) , |king | of Jerusalem ( d. ) 
## [doc1092] ratislaus II , first |king | of Bohemia , dies af
## [doc1092] islaus II , duke and |king | of Bohemia May – Rem
## [doc1092]                      |King | Ladislaus           
## [doc1093] mber – Malcolm III , |king | of Scotland ( b. )  
## [doc1093]  Iestyn ap Gwrgant , |king | of Morgannwg ( b. ) 
## [doc1093]     Rhys ap Tewdwr , |king | of Deheubarth , kill
## [doc1093]  Olaf III Peaceful , |king | of Norway October – 
## [doc1093]                      |King | Malcolm III of Scotl
## [doc1093]      [ ] September – |King | Olaf III of Norway (
## [doc1093]  ( d. ) Conrad III , |king | of Italy and Germany
## [doc1094]                      |King | Ladislaus I of Hunga
## [doc1094] vember – Duncan II , |king | of Scotland Abu Ali 
## [doc1094] can II ( son of late |King | Malcolm III ) invade
## [doc1094]           November – |King | Donald III mobilizes
## [doc1094]    June – Sancho V , |king | of Aragon and Pamplo
## [doc1095] van , Norse - Gaelic |king | of Dublin Henry of L
## [doc1095]                      |King | Olaf I ( Hunger ) di
## [doc1095] ecember – Roger II , |king | of Sicily ( d. ) [ ]
## [doc1095]  Olaf I ( Hunger ) , |king | of Denmark October –
## [doc1095]        Ladislaus I , |king | of Hungary August – 
## [doc1096]                      |King | Alfonso VI ( Brave )
## [doc1096]                      |King | Peter I of Aragon co
## [doc1096] usly is n't a single |king | among Crusaders ' le
## [doc1096]   Stephen of Blois , |king | of England ( approxi
## [doc1096]                      |King | Coloman ( Learned ) 
## [doc1097] eter , last Croatian |king | , is defeated and ki
## [doc1097] some 30,000 men ) of |King | Alfonso VI ( Brave )
## [doc1097]                      |King | Peter               
## [doc1097]    Heonjong , Korean |king | of Goryeo ( b. ) Bal
## [doc1097] nd bishop Peter II , |king | of Croatia ( see Bat
## [doc1097]                      |King | Donald III ( Fair ) 
## [doc1098] Vinayaditya , Indian |king | of Hoysala Empire Wa
## [doc1098]                      |King | Edgar of Scotland si
## [doc1099] onald III ( Fair ) , |king | of Scotland ( b. )  
## [doc1099]     Olav Magnusson , |king | of Norway ( d. ) Ran
## [doc1099] of Bouillon is named |king | ( but refuses to be 
## [doc1100] or William Rufus ) , |king | of England [ ]      
## [doc1100] d. ) Owain Gwynedd , |king | of Gwynedd ( approxi
## [doc1100]                      |King | William II ( or Will
## [doc1100]  descendant of Saxon |king | Edmund Ironside .   
## [doc1101]  Constantine Bodin , |king | of Duklja ( approxim
## [doc1101] nobleman Conrad II , |king | of Germany and Italy
## [doc1101]  ( d. ) Stephen II , |king | of Hungary and Croat
## [doc1101]              April – |King | Canute IV ( Holy ) o
## [doc1101]             Spring – |King | Baldwin             
## [doc1102] ned ; body of former |king | is supposedly found 
## [doc1102] rs ( knights ) under |King | Baldwin I are defeat
## [doc1102]                      |King |
## [doc1102]   Coloman is crowned |king | of Croatia ( until )
## [doc1103]  – Eric I ( Good ) , |king | of Denmark August – 
## [doc1103] ucceed him as joi nt |kings| of Norway .         
## [doc1104]  ( Battler ) becomes |king | of Aragon and Navarr
## [doc1104]                May – |King | Baldwin             
## [doc1104]                      |King | David IV ( Builder )
## [doc1104] lsh bishop Peter I , |king | of Aragon and Navarr
## [doc1105] arch – Alfonso VII , |king | of León and Castile 
## [doc1105]         Inge Elder , |king | of Sweden ( approxim
## [doc1105] son Henry V ( who is |king | of Germany ) .      
## [doc1105]             Summer – |King |
## [doc1106] gnus I ( Nilsson ) , |king | of Sweden ( d. ) Mat
## [doc1106]                      |King |
## [doc1106] nall Ua Conchobair , |king | of Connacht Gonzalo 
## [doc1107]  along with his ally |King | Coloman ( Learned ) 
## [doc1107] not receive title of |king | , but of Prince of C
## [doc1107]             Autumn – |King | Sigurd I ( Crusader 
## [doc1107]  Edgar ( Valiant ) , |king | of Scotland April – 
## [doc1107]            January – |King | Edgar ( Valiant ) di
## [doc1107]                      |King |
## [doc1107] he is first European |king | to support Crusaders
## [doc1108]               July – |King | Philip I ( Amorous )
## [doc1108]             Spring – |King | Sigurd I ( Crusader 
## [doc1108] ilip I ( Amorous ) , |king | of France November –
## [doc1109] fonso VI ( Brave ) , |king | of León and Castile 
## [doc1109] so I ( Conqueror ) , |king | of Portugal ( d. ) S
## [doc1110]                      |King |
## [doc1110]                      |King |
## [doc1110] I ( or Vladislav ) , |king | of Bohemia ( d . ) W
## [doc1110] Mac Murchada , Irish |king | of Leinster ( d. ) D
## [doc1110] abahu I , Sri Lankan |king | of Polonnaruwa Willi
## [doc1110] Chola I over Kalinga |king | , Anantavarman Choda
## [doc1111] ll Ua Briain becomes |king | of Hebrides and Isle
## [doc1111] so I ( Conqueror ) , |King | of Portugal ( d. ) A
## [doc1112] ía IV ( Restorer ) , |king | of Navarre ( d. )   
## [doc1112]         Kyansittha , |king | of Pagan Empire ( or
## [doc1112] e II ( or Giorgi ) , |king | of Georgia ( b. ) Gh
## [doc1113]                      |King | Suryavarman         
## [doc1113]                      |King | Baldwin             
## [doc1113] haranindravarman I , |king | of Khmer Empire Gira
## [doc1113]         Kyansittha , |king | of Pagan Empire ( or
## [doc1114]  b. ) Shahriyar IV , |king | of Mazandaran ( b. )
## [doc1115] agnus IV ( Blind ) , |king | of Norway ( approxim
## [doc1115] r – Olav Magnusson , |king | of Norway ( b. )    
## [doc1116]           February – |King | Coloman ( Learned ) 
## [doc1116]      The Welsh under |King | Gruffydd ap Rhys of 
## [doc1116] oloman ( Learned ) , |king | of Hungary February 
## [doc1116] – Philip of France , |king | of France ( d. ) Nov
## [doc1116] idrí Ua Conchobair , |king | of Connacht ( d. ) F
## [doc1117]                      |King | Mahaabarana Adeettiy
## [doc1117]                      |King | Stephen             
## [doc1118]  I ( of Boulogne ) , |king | of Jerusalem April  
## [doc1118] Younger becomes sole |king | of Sweden .         
## [doc1118] Diarmait Ua Briain , |king | of Munster Florence 
## [doc1118] drí na Saide Buide , |king | of Connacht Vladimir
## [doc1118] ltan ( b. ) Philip , |king | of Sweden ( House of
## [doc1119] chertach Ua Briain , |king | of Munster March – P
## [doc1119] h Ua Con Ceannainn , |king | of Uí Díarmata Geoff
## [doc1119]  Battle of Brémule : |King | Henry I of England d
## [doc1120]                      |King |
## [doc1120]                      |King | Baldwin             
## [doc1120] s VII ( le Jeune ) , |king | of France ( d. ) Phi
## [doc1121]                      |King | Baldwin II , in repr
## [doc1121]                      |King | David IV ( Builder )
## [doc1121] a Flaithbheartaigh , |king | of Iar Connacht Robe
## [doc1121] Ua Lochlainn , Irish |king | ( b. )              
## [doc1122]                      |King |
## [doc1123]         [ ] August – |King | Eystein I ( Magnusso
## [doc1123] abahu I , Sri Lankan |king | of Polonnaruwa ( d. 
## [doc1123]              April – |King | Baldwin II of Jerusa
## [doc1123]    I ( Magnusson ) , |king | of Norway September 
## [doc1125]  II ( Haraldsson ) , |king | of Norway ( approxim
## [doc1125]                      |King | Alfonso I ( Battler 
## [doc1125]                      |King |
## [doc1125] vid IV ( Builder ) , |king | of Georgia ( b. ) Ap
## [doc1125]  II ( Haraldsson ) , |king | of Norway ( approxim
## [doc1125]       Inge Younger , |king | of Sweden ( approxim
## [doc1125]                      |King |
## [doc1126] Ætheling , uncrowned |king | of England ( b. )   
## [doc1126]                      |King | Alfonso Battler of A
## [doc1126] mperador who becomes |king | of León ( until ) . 
## [doc1126]                      |King | Lothair III makes He
## [doc1126]    Vikramaditya VI , |king | of Western Chalukya 
## [doc1127]             Summer – |King | Roger               
## [doc1127]                      |King |
## [doc1127]                      |King | Louis VI ( Fat ) app
## [doc1128]                      |King | Louis VI ( Fat ) of 
## [doc1128]               June – |King |
## [doc1130] d Gille become joint |kings| of Norway , starting
## [doc1130]              March – |King | Sigurd              
## [doc1130] Strong is deposed as |king | of Götaland , when S
## [doc1131]  d. ) Ladislaus II , |king | of Hungary and Croat
## [doc1131]  Myeongjong , Korean |king | of Goryeo ( d . ) Eu
## [doc1131] ldemar I ( Great ) , |king | of Denmark ( d. ) No
## [doc1131]             August – |King | Baldwin II falls ser
## [doc1131]  ( b. ) Stephen II , |king | of Hungary and Croat
## [doc1131] ugust – Baldwin II , |king | of Jerusalem August 
## [doc1132]           He becomes |king | of province of Leins
## [doc1132] Sancho VI ( Wise ) , |king | of Navarre ( d. ) An
## [doc1132] aredudd ap Bleddyn , |king | of Powys ( b. )     
## [doc1133]  II ( Curtmantle ) , |king | of England ( d. ) [ 
## [doc1133] ( or Sigurd Munn ) , |king | of Norway ( d. ) Ste
## [doc1134] ourt of his cousin , |King | Roger II , who appoi
## [doc1134] ho III ( Desired ) , |king | of Castile ( d. ) Sv
## [doc1134] ls ( or Nicholas ) , |king | of Denmark July Belt
## [doc1134] onso I ( Battler ) , |king | of Aragon October – 
## [doc1134]                      |King | Alfonso I ( Battler 
## [doc1135]           December – |King | Henry I dies at Lyon
## [doc1135] ld Kesja ( Spear ) , |king | of Denmark ( b. )   
## [doc1135]            January – |King | Harald IV returns wi
## [doc1135] December – Henry I , |king | of England ( b. )   
## [doc1135]             Summer – |King | Roger               
## [doc1135]                      |King | García              
## [doc1135] ge I ( Hunchback ) , |king | of Norway ( d. ) Joa
## [doc1135]                May – |King | Alfonso VII is crown
## [doc1136] I ( or Amalricus ) , |king | of Jerusalem ( d. ) 
## [doc1136]                      |King | Owain Gwynedd ( styl
## [doc1136]           December – |King | Harald              
## [doc1136]             Spring – |King |
## [doc1136]        In response , |King | Stephen raises an ar
## [doc1137] – Louis VI ( Fat ) , |king | of France ( b. ) Sep
## [doc1137]  Gruffudd ap Cynan , |king | of Gwynedd Gruffydd 
## [doc1137]             Spring – |King |
## [doc1137] ate ) Ferdinand II , |king | of León and Galicia 
## [doc1138] ed ( Monkey King ) , |king | of Sicily ( d. ) Jan
## [doc1138]                      |King | David               
## [doc1139] oger II of Sicily as |King | of Sicily , Duke of 
## [doc1139] oger II of Sicily as |King | of Sicily , Duke of 
## [doc1140]             Summer – |King | Roger               
## [doc1140]             Summer – |King | Stephen appoints    
## [doc1140] omhnall Caomhánach , |king | of Leinster ( d. ) E
## [doc1140]             Spring – |King |
## [doc1140]                      |King | Conrad III enfeoffs 
## [doc1141] February – Béla II , |King | of Hungary and Croat
## [doc1141] l of of England from |King | Stephen , who is cap
## [doc1141] – Géza II is crowned |King | of Hungary and Croat
## [doc1142] ar Ua Briain , Irish |king | of Munster and Dubli
## [doc1142]                      |King | Afonso I Henriques o
## [doc1142] William I ( Lion ) , |king | of Scotland ( approx
## [doc1142]                      |King | Louis VII Younger of
## [doc1143] – Fulk ( Younger ) , |king | of Jerusalem Decembe
## [doc1143] gitimate son of late |King | Henry I ) defeats En
## [doc1143]             Spring – |King | Conrad III gives Bav
## [doc1145]  Mansur , victorious |king | .                   
## [doc1145]       At Christmas , |King | Louis VII announces 
## [doc1145]  Magnus Haraldsson , |king | of Norway ( approxim
## [doc1146]                      |King | Louis VII of France 
## [doc1146]             Summer – |King | Roger               
## [doc1146]                      |King | Conrad III takes cro
## [doc1146]  August – Eric III , |king | of Denmark ( House o
## [doc1147]  – Siege of Lisbon : |King | Afonso I of Portugal
## [doc1147]                      |King | Roger               
## [doc1147] e 20,000 men ) under |King | Conrad III leaves Re
## [doc1147] akon II Sigurdsson , |king | of Norway ( d. ) Hug
## [doc1148]           Béla III , |king | of Hungary and Croat
## [doc1148] ison surrenders. [ ] |King | Afonso I ( Great ) o
## [doc1148]              March – |King | Conrad III recovers 
## [doc1149] cknowledges Scottish |king | 's right to Northumb
## [doc1149]             Spring – |King |
## [doc1149]                      |King | Baldwin             
## [doc1149]                      |King | Louis VII and Queen 
## [doc1150]       At same time , |King | Conrad III besieges 
## [doc1150]     The - year - old |King | Inge I ( Hunchback )
## [doc1150] ía IV ( Restorer ) , |king | of Navarre December 
## [doc1150] Leo I ( or Levon ) , |king | of Armenian Cilicia 
## [doc1152]             Spring – |King | Baldwin             
## [doc1152] ruary – Conrad III , |king | of Italy and Germany
## [doc1152]           February – |King | Conrad III dies afte
## [doc1152]              March – |King | Louis VII repudiates
## [doc1152]              April – |King |
## [doc1153] illiam II ( Good ) , |king | of Sicily ( d. ) Jan
## [doc1153]            [ ] May – |King | David I dies after a
## [doc1153]  Óláfr Guðrøðarson , |king | of Isles July – Euge
## [doc1153] prus ( or Amaury ) , |king | of Jerusalem ( d.   
## [doc1153] – Siege of Ascalon : |King | Baldwin III of Jerus
## [doc1153]                      |King | Roger II sends a Sic
## [doc1153] a Conchobair , Irish |king | ( d. ) Fujiwara no K
## [doc1153]      May – David I , |king | of Scotland ( b. )  
## [doc1154]  October – Stephen , |king | of England ( b. )   
## [doc1154]            October – |King |
## [doc1154] ebruary – Roger II , |king | of Sicily ( b. ) [ ]
## [doc1154]             Autumn – |King | Frederick I ( Barbar
## [doc1154] ovember – Sancho I , |king | of Portugal ( d. ) A
## [doc1154]       [ ] February – |King | Roger               
## [doc1155]             Spring – |King |
## [doc1155] n June – Sigurd II , |king | of Norway ( b. )    
## [doc1155]               June – |King | Frederick I ( Barbar
## [doc1155]  Ireland , but Irish |kings| resist English rule 
## [doc1155] bruary – Henry Young |King | , son of Henry II ( 
## [doc1156]                May – |King | William I ( Bad ) la
## [doc1156]           December – |King | Sverker I ( Elder ) 
## [doc1156] verker I ( Elder ) , |king | of Sweden Peter Vene
## [doc1156] agnus V Erlingsson , |king | of Norway ( d. ) Rob
## [doc1156] a Conchobair , Irish |king | ( b. )              
## [doc1157]            October – |King | Sweyn III of Denmark
## [doc1157] riage to Henry Young |King | and queen of Hungary
## [doc1157] I of Denmark becomes |king | of all Denmark , and
## [doc1157]          September – |King | Richard I of England
## [doc1157]                      |King | Eystein II of Norway
## [doc1157] b. c. ) [ ] August – |King | Alfonso VII of Casti
## [doc1158]             August – |King | Sancho III ( Desired
## [doc1158]             Summer – |King | Henry II travels to 
## [doc1158] ugust – Sancho III , |king | of Castile ( b. )   
## [doc1158] Vladislav II becomes |king | of Bohemia .        
## [doc1160] y Eric IX ( Holy ) , |king | of Sweden ( b. ) Ibn
## [doc1160] nstance of Castile , |King | Louis VII marries Ad
## [doc1160]        [ ] January – |King | Frederick I ( Barbar
## [doc1161] Karl ) , who becomes |king | of Sweden ( until ) 
## [doc1161] ldwin IV ( Leper ) , |king | of Jerusalem ( d. ) 
## [doc1161] y – Battle of Oslo : |King | Inge I ( Hunchback )
## [doc1161]  II ( Henriksson ) , |king | of Sweden ( b. )    
## [doc1161]                      |King | Henry II is informed
## [doc1162] b. ) May – Géza II , |king | of Hungary and Croat
## [doc1162]  II ( Sigurdsson ) , |king | of Norway ( b. )    
## [doc1162] Bosnia , is declared |king | of Hungary and Croat
## [doc1162]               June – |King | Henry II has his cha
## [doc1163]           February – |King | Baldwin             
## [doc1163] ( d. ) [ ] January – |King | Ladislaus II of Hung
## [doc1164]            January – |King |
## [doc1164]                      |King | Olaf II of Norway is
## [doc1165] August – Philip II , |king | of France ( d. ) Alb
## [doc1165] ember – Malcolm IV , |king | of Scotland ( b. ) A
## [doc1165]           December – |King | Malcolm IV dies at J
## [doc1165]                      |King | Henry II invades Wal
## [doc1165]         Stephen IV , |king | of Hungary and Croat
## [doc1165]                      |King | Owain ap Gruffydd ( 
## [doc1165]         Stephen IV , |king | of Hungary and Croat
## [doc1166]                May – |King | William I ( Wicked )
## [doc1166] idrí Ua Conchobair , |king | of Connacht , who de
## [doc1166]  I ( or Henry II ) , |king | of Jerusalem ( d. ) 
## [doc1166] lliam I ( wicked ) , |king | of Sicily ( b. )    
## [doc1167] laungsithu , Burmese |king | of Pagan Dynasty ( b
## [doc1167]              April – |King | Charles VII ( Sverke
## [doc1167]                      |King |
## [doc1167] II ( Sverkersson ) , |king | of Sweden ( b. )    
## [doc1167] or Dermot ) , former |king | of Leinster , return
## [doc1168]             Summer – |King | Amalric             
## [doc1168]                      |King | Valdemar I ( Great )
## [doc1169] r sons , Henry Young |King | , Richard I , Geoffr
## [doc1169]                      |King | Henry II of England 
## [doc1169]                      |King | Amalric I of Jerusal
## [doc1170]                      |King | Amalric I withdraws 
## [doc1170] enne ( or John I ) , |king | of Jerusalem ( d. ) 
## [doc1170] l ab Owain Gwynedd , |king | of Gwynedd Ibn Zafar
## [doc1170]  Owain ap Gruffudd , |king | of Gwynedd ( b. )   
## [doc1170]               June – |King | Henry II has his - y
## [doc1170] -arms to Henry Young |King | .                   
## [doc1170] r II ( Conqueror ) , |king | of Denmark ( d. ) Au
## [doc1171] maid mac Murchadha , |king | of Leinster ( b. )  
## [doc1171] ugust – Alfonso IX , |king | of León and Galicia 
## [doc1171]               July – |King |
## [doc1171]             Autumn – |King | Alfonso II ( Chaste 
## [doc1171]  last Norse – Gaelic |king | of Dublin , is captu
## [doc1171]              March – |King | Amalric             
## [doc1171] ll ( or Torcaill ) , |king | of Dublin Gleb of Ki
## [doc1172] nall Mór Ua Briain , |king | of Munster .        
## [doc1172] waladr ap Gruffydd , |king | of Gwynedd Hugh of F
## [doc1172] r heir , Henry Young |King | , becomes jealous ov
## [doc1172] here he is acclaimed |king | by Hungarian nobilit
## [doc1172]                      |King | Henry II and Humbert
## [doc1172]        Stephen III , |king | of Hungary ( b. )   
## [doc1173]                      |King | Canute I ( Knut Erik
## [doc1173] . ) Llywelyn Great , |king | of Gwynedd ( d. ) Lo
## [doc1173]                      |King | Béla III invites Cis
## [doc1173] outh India Sinhalese |king | Parakramabahu Great 
## [doc1174]               July – |King | Amalric             
## [doc1174] orted by Henry Young |King | and Philip of Alsace
## [doc1174]                      |King | William I ( Lion ) s
## [doc1174] r July – Amalric I , |king | of Jerusalem ( b. ) 
## [doc1174] shop ( d. ) Emeric , |king | of Hungary and Croat
## [doc1174] his sons Henry Young |King | , Richard , Geoffrey
## [doc1175]                 High |King | Ruaidrí Ua Conchobai
## [doc1175] n ( d. ) Roger III , |king | of Sicily ( House of
## [doc1175]                      |King |
## [doc1175] ruary – Nadaungmya , |king | of Burma ( d. ) Al -
## [doc1176]                      |King |
## [doc1177]  Sigurdson ( Later , |King | Sverre I , of Norway
## [doc1177] August – Baldwin V , |King | of Jerusalem ( d. ) 
## [doc1178] a Flaithbheartaigh , |king | of Iar Connacht Ada 
## [doc1178] er II ( Catholic ) , |king | of Aragon ( d. ) Rol
## [doc1178] barossa ) is crowned |King | of Burgundy at Arles
## [doc1178] blemen with breaking |king | 's peace .          
## [doc1178]                      |King | George              
## [doc1179]                      |King | William I ( Lion ) e
## [doc1180] is VII ( Younger ) , |king | of France ( b. )    
## [doc1180] ric X ( Knutsson ) , |king | of Sweden ( approxim
## [doc1180]             Summer – |King | Baldwin IV ( Leper )
## [doc1180]  for having breached |king | 's peace .          
## [doc1180]          September – |King | Louis VII ( Younger 
## [doc1181]                      |King |
## [doc1181]                      |King |
## [doc1181]                      |King | Philip II ( Augustus
## [doc1182]           Béla III , |king | of Hungary , ravages
## [doc1182] ehold of Henry Young |King | , is accused of havi
## [doc1182] ldemar I ( Great ) , |king | of Denmark ( b. )   
## [doc1182]                      |King | Baldwin             
## [doc1182]            [ ] May – |King | Valdemar I ( Great )
## [doc1182]             Spring – |King | Philip II ( Augustus
## [doc1183]   June – Henry Young |King | , son of Henry II of
## [doc1184] Battle of Fimreite : |King |
## [doc1184] March – George III , |king | of Georgia ( House o
## [doc1184]                      |King | Henry II encourages 
## [doc1184] s V ( Erlingsson ) , |king | of Norway ( b. )    
## [doc1185]          The child - |king | becomes a pawn in po
## [doc1185]  Afonso II ( Fat ) , |king | of Portugal ( d. ) A
## [doc1185] ldwin IV ( Leper ) , |king | of Jerusalem ( b. ) 
## [doc1185]                      |King | Philip              
## [doc1185] Afonso I ( Great ) , |king | of Portugal ( b. )  
## [doc1185]                      |King | William II ( Good ) 
## [doc1185] ge II ( Bårdsson ) , |king | of Norway ( d. ) Mic
## [doc1185]    – The - year- old |King | Baldwin             
## [doc1185]                      |King | Henry II knights his
## [doc1185]           December – |King | Afonso I ( Great ) d
## [doc1186]     Jayavarman VII , |king | of Cambodia , founds
## [doc1186] ter death of child - |king | Baldwin V , his moth
## [doc1187] II ( Lion ) , French |king | ( d. ) Ela of Salisb
## [doc1187]                      |King |
## [doc1187] øðr Óláfsson , Norse |king | of Dublin November –
## [doc1188] ary – Ferdinand II , |king | of León and Galicia 
## [doc1188]            January – |King | Ferdinand II dies af
## [doc1188]             Spring – |King |
## [doc1188]                 Both |kings| agree to peace terms
## [doc1189]  II ( Curtmantle ) , |king | of England ( b. ) [ 
## [doc1189] st – Siege of Acre : |King | Guy of Lusignan move
## [doc1189] Richard I is crowned |king | of England in Westmi
## [doc1189]                      |King | Sancho I ( Populator
## [doc1189]       [ ] November – |King | William II ( Good ) 
## [doc1189]           December – |King | William I ( Lion ) o
## [doc1189] a Conchobair , Irish |king | Conon II ( or Cono )
## [doc1189] illiam II ( Good ) , |king | of Sicily ( b. ) Nov
## [doc1190]               July – |King | Richard I ( Lion Hea
## [doc1190]  making him de facto |king | of Jerusalem ( as Co
## [doc1190]                      |King | Stefan Nemanja found
## [doc1191]                      |King | Narapatisithu appoin
## [doc1191] gitimate son of late |King | Henry II and half - 
## [doc1191]                      |King | Canute VI leads a Da
## [doc1191]                      |King | Jayavarman          
## [doc1191]            Among are |King | Guy of Lusignan of J
## [doc1191]  or Lasha Giorgi ) , |king | of Georgia ( d. ) [ 
## [doc1191]              April – |King | Richard I ( Lionhear
## [doc1191] o Tancred of Lecce , |king | or usurper of Sicily
## [doc1192] salem ( d. ) [ ] [ ] |King | Stefan Radoslav of S
## [doc1192] errat ( Conrad I ) , |King | of Jerusalem , is as
## [doc1192] Prithviraj Chauhan , |King | of Chauhan Dynasty (
## [doc1193] cember – Roger III , |king | of Sicily ( House of
## [doc1193]           February – |King | Richard I ( Lionhear
## [doc1193]                      |King |
## [doc1193]                      |King | Tancred of Sicily ar
## [doc1193]                      |King | Philip II ( Augustus
## [doc1194] cce ) and is crowned |king | of Sicily .         
## [doc1194]  levied taxes to pay |king | 's ransom and put do
## [doc1194]  – Guy of Lusignan , |king | of Jerusalem ( b. ) 
## [doc1194] – Tancred of Lecce , |king | of Sicily ( b. )    
## [doc1194]           February – |King | Richard I ( Lionhear
## [doc1194] Sancho VI ( Wise ) , |king | of Navarre ( b. )   
## [doc1196]  , Frederick II , as |king | of Romans and heir t
## [doc1196] n April – Béla III , |king | of Hungary and Croat
## [doc1196] ute I ( Eriksson ) , |king | of Sweden ( approxim
## [doc1196]              April – |King | Alfonso II ( Chaste 
## [doc1197] out between Emeric , |King | of Hungary and his y
## [doc1197] aithbertaigh , Irish |king | of Iar Connacht Tugh
## [doc1197]  I ( or Henry II ) , |king | of Jerusalem ( b. ) 
## [doc1197]  I ( or Henry II ) , |king | of Jerusalem , dies 
## [doc1197]                      |King | Richard             
## [doc1198] I , daughter of late |King | Amalric I .         
## [doc1198] ust – Alexander II , |king | of Scotland ( d. ) S
## [doc1198]           The French |king | is among who plunge 
## [doc1198]        His brother , |King | Richard I ( Lionhear
## [doc1198] enry VI , is crowned |King | of Sicily .         
## [doc1199] rd I ( Lionheart ) , |king | of England ( b. ) [ 
## [doc1199] nand III ( Saint ) , |king | of Castile and León 
## [doc1199]             Summer – |King | William Lion of Scot
## [doc1199] , John is crowned as |king | of England at Westmi
## [doc1199] rd I ( Lionheart ) , |king | of England ( b. ) [ 
## [doc1200]  from William Lion , |king | of Scotland , at Lin
## [doc1201]                      |King | John ( Lackland ) pu
## [doc1201] valid as made before |king | himself or his chief
## [doc1202] iface II ( Giant ) , |king | of Thessalonica ( d.
## [doc1202]  loyalty to Emeric , |king | of Hungary and Croat
## [doc1202]             Spring – |King | Philip II ( Augustus
## [doc1202] son ( or Sverrir ) , |king | of Norway March – Mi
## [doc1202] vember – Canute VI , |king | of Denmark ( b. ) De
## [doc1203]   Quarrel : Emeric , |King | of Hungary captures 
## [doc1203]                      |King | Aimery of Jerusalem 
## [doc1203] such as ransoming of |king | ’s soldiers captured
## [doc1203] ugas ( or Mendog ) , |king | of Lithuania ( d. ) 
## [doc1203]           In April , |King | John ( Lackland ) lo
## [doc1204]  November – Emeric , |King | of Hungary ( b. ) [ 
## [doc1204]             August – |King | Guttorm of Norway [ 
## [doc1204] ark is recognized as |king | in Norway . [ ]     
## [doc1204]  ] April – Henry I , |king | of Castile ( d. ) [ 
## [doc1204] ( d. ) [ ] January – |King | Haakon              
## [doc1204] yan is recognized as |king | of Bulgaria by Pope 
## [doc1205]  who is also crowned |king | of Germany ) in nort
## [doc1205] – Aimery of Cyprus , |king | of Jerusalem , dies 
## [doc1205] ay – Ladislaus III , |king | of Hungary and Croat
## [doc1205] rius of Montferrat , |king | of Thessalonica ( d.
## [doc1205] prus ( or Amaury ) , |king | of Jerusalem April –
## [doc1205] rius of Montferrat , |king | of Thessalonica ( d.
## [doc1205] II , brother of late |King | Emeric , is crowned 
## [doc1206] n needed ] Béla IV , |king | of Hungary and Croat
## [doc1206]                      |King | Valdemar II ( Conque
## [doc1206]                      |King | John ( Lackland ) la
## [doc1207] , Alanian prince and |king | consort [ ]         
## [doc1207] nchester ) , English |king | ( d. ) Adelasia of T
## [doc1207]                      |King | John ( Lackland ) in
## [doc1207] , Alanian prince and |king | consort [ ]         
## [doc1208]                      |King | Sverker II ( Younger
## [doc1208]  I , ( Conqueror ) , |king | of Aragon ( d. )    
## [doc1208]  by German nobles as |king | of Germany at Frankf
## [doc1208] – Philip of Swabia , |king | of Germany ( b. )   
## [doc1208] – Philip of Swabia , |king | of Germany , is assa
## [doc1209] emar III ( Young ) , |king | of Denmark ( d. ) Wa
## [doc1209]                      |King | Philip II ( Augustus
## [doc1209] east paupers because |king | went to take cranes 
## [doc1209] ancho II ( Pious ) , |king | of Portugal ( d. ) D
## [doc1210] ainst Frederick II , |king | of Sicily . [ ]     
## [doc1210] ker II ( Younger ) , |king | of Sweden October – 
## [doc1210]                      |King | Sverker II ( Younger
## [doc1210]  , a sum of money to |king | .                   
## [doc1210]                      |King | John extends his tax
## [doc1210] onation of a Swedish |king | .                   
## [doc1210] III ( Boulonnais ) , |king | of Portugal ( d. ) J
## [doc1211] n absentia as German |king | by rebellious noblem
## [doc1211]          Henry VII , |king | of Germany ( Rex Rom
## [doc1211]              March – |King | Sancho I ( Populator
## [doc1211] ho I ( Populator ) , |king | of Portugal ( b. )  
## [doc1211]         [ ] Summer – |King | John ( Lackland ) ca
## [doc1212]                      |King | John ( Lackland ) im
## [doc1213]           Hethum I , |King | of Armenia , ruler o
## [doc1213]                May – |King | John of England subm
## [doc1213]                      |King | Peter II of Aragon (
## [doc1214] Louis IX ( Saint ) , |king | of France ( d. ) [ ]
## [doc1214] ber – William Lion , |king | of Scotland ( b. ) [
## [doc1214] nso VIII ( Noble ) , |king | of Castile ( b. ) Oc
## [doc1214] on death of father , |King | Alfonso VIII ( Noble
## [doc1214]           December – |King | William Lion dies af
## [doc1214]                      |King | Philip II ( Augustus
## [doc1214]           February – |King | John ( Lackland ) la
## [doc1215] aruwa and depose its |king | , Parakrama Pandya .
## [doc1215] I ( or David Ulu ) , |king | of Georgia ( d. ) El
## [doc1215]              March – |King | John ( Lackland ) , 
## [doc1215]                      |King | Alexander II of Scot
## [doc1215]                  [ ] |King | Kalinga             
## [doc1216] hn I , son of former |King | Sverker II ( Younger
## [doc1216]  John ( Lackland ) , |king | of England ( b. )   
## [doc1216] Magna Carta , in new |king | 's name . [ ] [ ]   
## [doc1216]          Meanwhile , |King | John uses Corfe Cast
## [doc1216]   February – Leo I , |King | of Armenia ( Magnifi
## [doc1216]                May – |King | John of England asse
## [doc1216] ric X ( Knutsson ) , |king | of Sweden ( b. ) Apr
## [doc1216] c IV ( Plowpenny ) , |king | of Denmark ( d. ) Er
## [doc1217]     The - year - old |King |
## [doc1217] r Caupo of Turaida , |king | of Livonia Lembitu ,
## [doc1217] ld Haakon IV becomes |king | of Norway , followin
## [doc1217]                      |King | Andrew II of Hungary
## [doc1217]  – Henry I ( Fat ) , |king | of Cyprus ( d. ) Aug
## [doc1217]     June – Henry I , |king | of Castile and Toled
## [doc1217] ge II ( Bårdsson ) , |king | of Norway ( b.      
## [doc1217]            The young |king | begins his reign ( s
## [doc1217]          Meanwhile , |King | Hugh I of Cyprus lan
## [doc1218] reaty of Worcester : |King | Henry III writes to 
## [doc1218] Hugh I ( or Hugo ) , |king | of Cyprus ( b. )    
## [doc1218] ut ( d. ) Rudolf I , |king | of Germany ( d. ) Jo
## [doc1218] e 30,000 men ) under |King | John I of Jerusalem 
## [doc1219] eo II ( or Levon ) , |king | of Armenian Cilicia 
## [doc1219] ( or Christoffer ) , |king | of Denmark ( d. )   
## [doc1220] ded of his duties as |king | to maintain peace , 
## [doc1220]             Spring – |King | Henry III makes larg
## [doc1220]              April – |King | Frederick           
## [doc1221]    During fighting , |King | George IV himself is
## [doc1221] Alfonso X ( Wise ) , |king | of Castile ( d. ) [ 
## [doc1221]                      |King | John                
## [doc1221] est daughter of late |King | John ( Lackland ) , 
## [doc1222]  Johan Sverkersson , |king | of Sweden since ( b.
## [doc1223]               July – |King | Philip II ( Augustus
## [doc1223]  Afonso II ( Fat ) , |king | of Portugal ( b. ) M
## [doc1223] ip II ( Augustus ) , |king | of France ( b. )    
## [doc1223]              March – |King | Afonso II ( Fat ) di
## [doc1223] n Uroš I ( Great ) , |king | of Serbia ( d. ) Mar
## [doc1224]                May – |King | Louis VIII ( Lion ) 
## [doc1224] earg Ua Conchobair , |king | of Connacht ( b. ) D
## [doc1224] l hanged by order of |king | .                   
## [doc1224]           February – |King | Ferdinand III ( Sain
## [doc1225] I Narin ( Clever ) , |king | of Georgia ( d. ) Fr
## [doc1225]  Fat ) is crowned as |king | of Cyprus in Cathedr
## [doc1226] aint ) , who becomes |king | of France .         
## [doc1226]                      |King | Sancho II ( Pious ) 
## [doc1226]                      |King | Louis VIII ( Lion ) 
## [doc1226] ouis VIII ( Lion ) , |king | of France ( b. ) Nov
## [doc1228]                      |King | Sukaphaa establishes
## [doc1228]                      |King | James I ( Conqueror 
## [doc1228] V ( or Conrad II ) , |king | of Germany ( d. ) [ 
## [doc1228] an First - Crowned , |king | of Serbia October – 
## [doc1228]                      |King | Alfonso IX of León c
## [doc1229] eated and deposed as |king | of Sweden by Canute 
## [doc1229]            October – |King | Henry III calls for 
## [doc1230]       The Portuguese |king | Sancho II continues 
## [doc1230] rius of Montferrat , |king | of Thessalonica ( b.
## [doc1230] ember – Alfonso IX , |king | of León and Galicia 
## [doc1230]                      |King | Alfonso IX defeats I
## [doc1230]              April – |King | Henry III embarks fr
## [doc1231]             August – |King | Henry III orders she
## [doc1231] r – Valdemar Young , |king | of Denmark December 
## [doc1232]               July – |King | Henry III dismisses 
## [doc1232] sehold and keeper of |king | 's wardrobe .       
## [doc1232] tion for controlling |king | 's affairs .        
## [doc1232] ber – Haakon Young , |king | of Norway ( d. ) unk
## [doc1233] st – Oath of Bereg : |King | Andrew II of Hungary
## [doc1234] eacefully returns as |king | .                   
## [doc1234] cho VII ( Strong ) , |king | of Navarre April – R
## [doc1234]                      |King | Sancho              
## [doc1234] Canute II ( Tall ) , |king | of Sweden ( House of
## [doc1234]                      |King | Canute II ( Tall ) d
## [doc1234]                      |King | Andrew II of Hungary
## [doc1236]            January – |King | Henry III marries - 
## [doc1236]                      |King | Kalinga             
## [doc1237]                      |King |
## [doc1237] enne ( or John I ) , |king | of Jerusalem April B
## [doc1238] age takes place with |king | 's approval , act it
## [doc1238] I ( Law - mender ) , |king | of Norway ( d. ) May
## [doc1238]          September – |King | James I of Aragon ca
## [doc1238]  mission to European |kings| Louis IX ( Saint ) a
## [doc1239] d I ( Longshanks ) , |king | of England ( d . ) D
## [doc1239] ,500 knights ) under |King | Theobald I of Navarr
## [doc1239] t ( d. ) Stephen V , |king | of Hungary ( House o
## [doc1239]                      |King | Louis IX ( Saint ) h
## [doc1239]             Autumn – |King | Béla IV allows some 
## [doc1240]                      |King | Sancho II ( Pious ) 
## [doc1240] III ( Birgersson ) , |king | of Sweden ( d. ) Pet
## [doc1241] n royalty , Prince ( |King | ) of Halych , Duke o
## [doc1242] e 25,000 men ) under |King | Louis IX ( Saint ) d
## [doc1242] bruary – Henry VII , |king | of Germany ( b. )   
## [doc1242]                      |King | Sancho II ( Pious ) 
## [doc1242]           November – |King | Béla IV issues Golde
## [doc1243] Treaty of Bordeaux : |King | Louis IX ( Saint ) a
## [doc1243]              March – |King | Ferdinand III ( Sain
## [doc1244]                      |King | James I ( Conqueror 
## [doc1244]                      |King | Louis IX ( Saint ) f
## [doc1244]  ) Henry I ( Fat ) , |king | of Navarre ( House o
## [doc1245]                      |King | Henry III starts wor
## [doc1245] hilip III ( Bold ) , |king | of France ( d. ) Nov
## [doc1246] arian forces , under |King | Béla IV , defeat Duk
## [doc1247]             Summer – |King | Henry I ( Fat ) send
## [doc1247]               July – |King | Béla                
## [doc1247]    As a punishment , |King | James I ( Conqueror 
## [doc1248]             August – |King | Louis IX ( Saint ) l
## [doc1248] ancho II ( Pious ) , |king | of Portugal ( b. ) J
## [doc1249] uly – Alexander II , |king | of Scotland ( b. )  
## [doc1249]               July – |King | Alexander           
## [doc1249]                      |King | Afonso III ( Boulonn
## [doc1249]                May – |King | Louis IX ( Saint ) a
## [doc1249] Battle of Fossalta : |King | Enzo of Sardinia , a
## [doc1249]                      |king | 's advisers urges a 
## [doc1250] IV ( Ploughpenny ) , |king | of Denmark October –
## [doc1250]                      |King | Afonso III ( Boulonn
## [doc1250] ecomes first Swedish |king | of House of Folkung 
## [doc1250]           February – |King | Eric XI ( Eriksson )
## [doc1250] ic XI ( Eriksson ) , |king | of Sweden ( b. ) Feb
## [doc1250]              April – |King | Louis IX ( Saint ) i
## [doc1251] r to Mongols , meets |king | in Palestine , with 
## [doc1251]           December – |King | Alexander III of Sco
## [doc1252]        June – Abel , |King | of Denmark ( b. ) [ 
## [doc1252] onso X is proclaimed |king | of Castile and León 
## [doc1252]                May – |King | Ferdinand III of Cas
## [doc1253]          Meanwhile , |King | Louis IX of France (
## [doc1253]            January – |King | Henry I of Cyprus ( 
## [doc1253] Morta are crowned as |king | and queen of Lithuan
## [doc1253]             August – |King | Henry III leads an e
## [doc1253] iface II ( Giant ) , |king | of Thessalonica ( b.
## [doc1253] ber – Wenceslaus I , |king | of Bohemia ( b. )   
## [doc1253]  – Henry I ( Fat ) , |king | of Cyprus ( b. ) Apr
## [doc1254]           February – |King | Louis IX ( Saint ) s
## [doc1254]                      |King | Henry III grants his
## [doc1254]            [ ] May – |King | Conrad              
## [doc1254]  ) May – Conrad IV , |king | of Germany en Sicily
## [doc1254] wn before becoming a |king | .                   
## [doc1255] of Nassau-weilburg , |king | of Germany ( d. ) Al
## [doc1255]                      |King | Afonso III ( Boulonn
## [doc1256] liam II of Holland , |king | of Germany ( b. ) Fe
## [doc1257] aakon Young , junior |king | of Norway ( b. ) May
## [doc1257]                      |King | Henry III orders pro
## [doc1257] ober – Przemysl II , |king | of Poland ( d. ) Agn
## [doc1258]                May – |King | Henry III accepts de
## [doc1258] rick II , is crowned |king | of Sicily at Palermo
## [doc1258]                      |King | Louis IX ( Saint ) s
## [doc1259] anders [ ] [ ] May – |King | Christopher I of Den
## [doc1261] k ( Elbow - High ) , |king | of Poland ( d. ) Feb
## [doc1261] is I ( Poet King ) , |king | of Portugal ( d. ) A
## [doc1261]               June – |King | Henry III obtains a 
## [doc1261] ebruary – Otto III , |king | of Hungary and Croat
## [doc1262]                      |King | Mindaugas renounces 
## [doc1262]                      |King | Alfonso X ( Wise ) o
## [doc1262]                      |King | Mangrai of Lan Na Ki
## [doc1262]       IV ( Cuman ) , |king | of Hungary ( d. ) Oc
## [doc1263] g ) , only Christian |king | of Lithuania , is as
## [doc1263]                      |King | Haakon              
## [doc1263] Haakon IV ( Old ) as |king | of Norway .         
## [doc1263]                      |King | Alfonso X ( Wise ) c
## [doc1263]  Haakon IV ( Old ) , |king | of Norway ( b . )   
## [doc1263] ugas ( or Mendog ) , |king | of Lithuania ( b. ) 
## [doc1263]                      |King | James I ( Conqueror 
## [doc1264] king Simon uncrowned |king | of England for month
## [doc1264]        [ ] January – |King | Louis IX ( Saint ) i
## [doc1265]  – Magnús Óláfsson , |King | of Mann and Isles [ 
## [doc1266]  – Treaty of Perth : |King | Alexander III agrees
## [doc1266]  II ( or Het 'um ) , |king | of Cilician Armenia 
## [doc1266]                      |King | James I of Aragon ( 
## [doc1267] eaty of Montgomery : |King | Henry III of England
## [doc1267]  Hugh II of Cyprus , |king | of Cyprus and regent
## [doc1267]           February – |King | Afonso III of Portug
## [doc1268]                      |King |
## [doc1269]                      |King | Ottokar II inherits 
## [doc1269]               June – |King | Louis IX ( Saint ) o
## [doc1270]      Before August – |King | Louis IX of France l
## [doc1270]                      |King |
## [doc1270]      David VII Ulu , |King | of Georgia ( b. ) [ 
## [doc1270]                      |King | Louis IX of France (
## [doc1270]               August |King | Louis IX of France (
## [doc1271] rmac MacCarthy Mor , |king | of Desmond ( d. ) Ei
## [doc1271] r – Charles Martel , |king | of Hungary ( d. ) Se
## [doc1272]           November – |King | Henry III dies at pa
## [doc1272]             August – |King |
## [doc1272] vember – Henry III , |king | of England ( b. )   
## [doc1272]                      |King | Afonso III ( Boulonn
## [doc1272]            [ ] May – |King | Hugh III ( Great ) s
## [doc1272]         I of Anjou , |king | of Sicily , occupies
## [doc1272]          Stephen V , |king | of Hungary ( b. ) Au
## [doc1272] er – Frederick III , |king | of Sicily ( d. ) Ama
## [doc1272] – Enzo of Sardinia , |king | of Sardinia ( b. ) M
## [doc1273]  ( d. ) David VIII , |king | of Georgia ( House o
## [doc1273] ndidate Ottokar II , |king | of Bohemia , ending 
## [doc1274] cho I ( Peaceful ) , |king | of Majorca ( d. ) Se
## [doc1274] Land , to be crowned |king | of England , two yea
## [doc1274] Robert I ( Bruce ) , |king | of Scotland ( d. ) J
## [doc1274] I ( or Henry III ) , |king | of Navarre ( House o
## [doc1274] tion of Ottokar II , |king | of Bohemia , who has
## [doc1275] ern Italy Rudolf I , |king | of Germany . [ ] Ram
## [doc1275] n and is elected new |king | of Sweden at Stones 
## [doc1275]             Spring – |King | Edward I ( Longshank
## [doc1275]                      |King | Valdemar Birgersson 
## [doc1276]  ) Robert of Anjou , |king | of Naples ( House of
## [doc1276] r – Christopher II , |king | of Denmark ( d. )   
## [doc1276]             Spring – |King | Edward I ( Longshank
## [doc1276] es I ( Conqueror ) , |king | of Aragon ( b. ) Aug
## [doc1276]                      |King | Rudolf I declares wa
## [doc1277] at I ( or Sempad ) , |king | of Cilician Armenia 
## [doc1277] empts of Charles I , |king | of Sicily , to organ
## [doc1277] n Uroš I ( Great ) , |king | of Serbia May – Nich
## [doc1277] ) Philip of Sicily , |king | of Sardinia ( House 
## [doc1277]  March – Charles I , |king | of Sicily , buys tit
## [doc1278] ohemian nobleman and |king | ( b. ) November – Ba
## [doc1278] ntrol of Charles I , |king | of Sicily .         
## [doc1279] III ( Boulonnais ) , |king | of Portugal ( b. )  
## [doc1279] am Khamhaeng becomes |king | of Phra Ruang Dynast
## [doc1280]             Birger , |King | of Sweden , Swedish 
## [doc1281] at ( d. ) Rudolf I , |king | of Bohemia ( House o
## [doc1281] thorizes Charles I , |king | of Sicily , to make 
## [doc1281] ntact with Leo III , |king | of Cilician Armenia 
## [doc1282]                      |King | Stefan Dragutin brea
## [doc1282] ishop ( d. ) Oshin , |king | of Cilician Armenia 
## [doc1282]           December – |King | Rudolf I invests his
## [doc1282]                      |King | Denis I ( Poet King 
## [doc1283]                      |King | Jayavarman          
## [doc1284]                      |King | Edward I ( Longshank
## [doc1284]  II ( Caernarfon ) , |king | of England ( d. ) [ 
## [doc1284] Hugh III ( Great ) , |king | of Cyprus ( b. ) Apr
## [doc1284]                      |King | Charles II ( Lame ) 
## [doc1284]                      |King | Rudolf              
## [doc1284]              April – |King | Alfonso X ( Wise ) f
## [doc1284]                      |King | Peter III ( Great ) 
## [doc1285] lois , is crowned as |king | of Aragon ( under va
## [doc1285] anuary – Charles I , |king | of Sicily ( House of
## [doc1285] tober – Philip III , |king | of France ( House of
## [doc1285] eral ) , who becomes |king | of Aragon .         
## [doc1285]                      |King | Sancho              
## [doc1285] ber – Ferdinand IV , |king | of Castile and León 
## [doc1286] ric V ( Klipping ) , |king | of Denmark ( b. ) [ 
## [doc1286]                      |King | Edward I ( Longshank
## [doc1286]  ) – Alexander III , |king | of Scotland ( b. ) [
## [doc1286] ngdom of Muang Sua , |King | Panya Leng is overth
## [doc1286]              March – |King | Alexander           
## [doc1286]  Henry II is crowned |king | of Jerusalem at Tyre
## [doc1286]  ( Fair ) is crowned |king | of France at Reims .
## [doc1287]        He is crowned |king | on April and declare
## [doc1288]        In response , |King | Alfonso III ( Libera
## [doc1288] n ( d. ) Charles I , |king | of Hungary ( House o
## [doc1289]     Wenceslaus III , |king | of Hungary and Croat
## [doc1289]  X ( Quarrelsome ) , |king | of France ( d. ) Oct
## [doc1289] ir ( or Handsome ) , |king | of Germany ( d. ) Jo
## [doc1289]     The - year - old |King | Henry II sends his y
## [doc1289]             Summer – |King | Edward I ( Longshank
## [doc1289] ius II ( Devoted ) , |king | of Georgia ( b. )   
## [doc1290]                      |King | Edward I ( Longshank
## [doc1290]       IV ( Cuman ) , |king | of Hungary and Croat
## [doc1290] I ) ( Birgersson ) , |king | of Sweden ( b. ) Dec
## [doc1290]               July – |King | Ladislaus           
## [doc1290] I ) ( Birgersson ) , |king | of Sweden ( b. )    
## [doc1290] ectly to his lord or |king | .                   
## [doc1291] r II ) ( Liberal ) , |king | of Aragon ( b. ) [ ]
## [doc1291] fonso IV ( Brave ) , |king | of Portugal ( d. ) [
## [doc1291]                  The |kings| Sancho IV ( Brave ) 
## [doc1291]    July – Rudolf I , |king | of Germany ( House o
## [doc1291]                      |King | Henry II escapes , b
## [doc1291] ll ( or Culanagh ) , |king | of Tír Eoghain ( b. 
## [doc1291]                      |King | Andrew III ( Venetia
## [doc1292]                      |King | Mangrai ( Great ) of
## [doc1293] edlim Ó Conchobair , |King | of Connacht ( d. ) [
## [doc1293]     David VI Narin , |King | of Georgia ( b. ) [ 
## [doc1294] o finance war , both |kings| lay taxes on clergy 
## [doc1294]       John Balliol , |King | of Scotland , decide
## [doc1294] oniface VIII insists |kings| gain papal consent f
## [doc1295] les Martel , titular |king | of Hungary ( b. )   
## [doc1295]                      |King | Jayavarman VIII is o
## [doc1295]       [ ] November – |King | Edward I ( Longshank
## [doc1295]              April – |King | Sancho IV ( Brave ) 
## [doc1295] zemysl II is crowned |king | of Poland at Gniezno
## [doc1295] ancho IV ( Brave ) , |king | of Castile ( b. ) Ma
## [doc1296] Capture of Berwick : |King | Edward              
## [doc1296] huzan [ ] February – |King | Przemysl II of Polan
## [doc1296]       August – Blind |King | John I of Bohemia ( 
## [doc1296]          [ ] April – |King | Mangrai Great of Ngo
## [doc1296]  , self - proclaimed |king | of Pegu , is defeate
## [doc1297]          [ ] April – |King | Edward I ( Longshank
## [doc1297]          July – Late |king | Louis IX ( Saint ) i
## [doc1297] d by future Scottish |king | Robert I ( Bruce ) a
## [doc1297] Kings Denis I ( Poet |King | ) and - year - old F
## [doc1298]  – Adolf of Nassau , |king | of Germany ( House o
## [doc1298]             Summer – |King | Edward I ( Longshank
## [doc1298] s III ( or Toros ) , |king | of Cilician Armenia 
## [doc1298]        In response , |King | Eric VI ( Menved ) t
## [doc1299] ence is uncovered of |King | Edward I ( Longshank
## [doc1299] when flagship , with |King | Frederick II onboard
## [doc1299] c II ( Magnusson ) , |king | of Norway ( b. )    
## [doc1299] onso IV ( Gentle ) , |king | of Aragon ( d. ) unk
## [doc1299]                      |King | Hethum II leads Arme
## [doc1300]     He is crowned as |king | and reunites Polish 
## [doc1300]                      |King | Philip IV ( Fair ) b
## [doc1300]                  The |king | 's brother , Charles
## [doc1300]                      |King | Edward I ( Longshank
## [doc1300] a small territory as |king | 's direct representa
## [doc1301] w III ( Venetian ) , |king | of Hungary ( b. ) [ 
## [doc1301] ected and crowned as |king | of Hungary and Croat
## [doc1301] Valois , son of late |King | Philip III ( Bold ) 
## [doc1302] aldemar Birgersson , |king | of Sweden ( b. ) Dec
## [doc1302]             Spring – |King | Edward I ( Longshank
## [doc1302]                      |King | Charles II ( Lame ) 
## [doc1303]     The - year - old |King | Ferdinand IV ( summo
## [doc1303]  – Treaty of Paris : |King | Philip IV ( Fair ) s
## [doc1304]     The - year - old |King | Ferdinand IV ( summo
## [doc1305] ne – Wenceslaus II , |king | of Bohemia and Polan
## [doc1305]           Albert I , |king | of Germany , forces 
## [doc1305]               June – |King | Wenceslaus II dies ,
## [doc1305]          September – |King | Edward I ( Longshank
## [doc1306] ert Bruce is crowned |king | of Scotland by Bisho
## [doc1306] t – Wenceslaus III , |king | of Hungary , Croatia
## [doc1306]             Spring – |King | Philip IV ( Fair ) t
## [doc1307] d I ( Longshanks ) , |king | of England ( b. ) [ 
## [doc1307] ter he is proclaimed |king | and continues north 
## [doc1307]             Spring – |King |
## [doc1307]           In Paris , |king | 's inquisitors tortu
## [doc1307]            October – |King | Philip IV ( Fair ) o
## [doc1307]               July – |King | Edward I of England 
## [doc1307] obleman , knight and |king | ( b. ) [ ]          
## [doc1308] eman , pretender and |king | ( b. ) May – Amadeus
## [doc1308]            January – |King | Edward II marries - 
## [doc1308]                      |King | Ferdinand IV ( summo
## [doc1308] hwarzburg , disputed |king | of Germany , lay sie
## [doc1308]  Yuri I of Galicia , |king | of Ruthenia ( House 
## [doc1308] ers fugitive Vaghela |king | Karna .             
## [doc1308] ld Charles Robert as |king | of Hungary and Croat
## [doc1308]                      |King | Philip IV ( Fair ) p
## [doc1308] ld Charles Robert as |king | of Hungary and Croat
## [doc1308]              March – |King | Denis I ( Poet King 
## [doc1309]                      |King | Edward              
## [doc1309] alienate nobles from |king | .                   
## [doc1309]                      |King | Denis I ( Poet King 
## [doc1310] imir III ( Great ) , |king | of Poland ( d. ) Nov
## [doc1310]                      |King | Edward II invades Sc
## [doc1311] ) Mangrai , founding |king | of Lan Na ( b. ) pro
## [doc1311]              March – |King | Ferdinand IV ( Summo
## [doc1311] ) Mangrai , founding |king | of Lan Na ( b. )    
## [doc1311] nso XI ( Avenger ) , |king | of Castile ( d. ) un
## [doc1312] ember – Edward III , |king | of England and Irela
## [doc1312]          September – |King | Ferdinand IV ( Summo
## [doc1312] ber – Ferdinand IV , |king | of Castile and León 
## [doc1312]                      |King | Edward              
## [doc1313]                      |King | Robert I ( Bruce ) c
## [doc1313] ther of - year - old |King | Alfonso XI ( Avenger
## [doc1313]                      |King | Stefan Milutin , one
## [doc1313] ntine III ( or V ) , |king | of Cilician Armenia 
## [doc1313] of Naples ( Wise ) , |king | of Naples .         
## [doc1314] Philip IV ( Fair ) , |king | of France ( House of
## [doc1314] demar III ( or V ) , |king | of Denmark ( House o
## [doc1314]         [ ] August – |King | Haakon V ( Magnusson
## [doc1314] ol ( Toom Tabard ) , |king | of Scotland ( House 
## [doc1314] demar III ( or V ) , |king | of Denmark ( House o
## [doc1314] ol ( Toom Tabard ) , |king | of Scotland ( House 
## [doc1315] erlands , as well as |King | Edward II , to suppo
## [doc1315] ean crown prince and |king | ( d. ) April – James
## [doc1315] mmunity depends upon |king | for right to protect
## [doc1315]             August – |King | Louis X ( Quarrelsom
## [doc1316]  March – Robert II , |king | of Scotland ( House 
## [doc1316]  X ( Quarrelsome ) , |king | of France ( b. )    
## [doc1316] n I ( Posthumous ) , |king | of France November –
## [doc1316] gnus IV ( or VII ) , |king | of Sweden ( House of
## [doc1316] gnus IV ( or VII ) , |king | of Sweden ( House of
## [doc1316]  – Stefan Dragutin , |king | of Serbia ( House of
## [doc1316] n I ( Posthumous ) , |king | of France ( d. ) dat
## [doc1316]               June – |King | Louis X ( Quarrelsom
## [doc1317]  ( Posthumous ) , as |king | of France ( and Phil
## [doc1317]                      |King | Eric VI , his ally D
## [doc1318] absence of a Swedish |king | .                   
## [doc1318]             Spring – |King | Birger Magnusson is 
## [doc1319] on V ( Magnusson ) , |king | of Norway ( b. ) [ ]
## [doc1319] – John II ( Good ) , |king | of France ( d. )    
## [doc1319]       After battle , |King | Edward II is forced 
## [doc1319] Eric VI ( Menved ) , |king | of Denmark ( b. )   
## [doc1319] ternal grandfather , |King | Haakon V ( Magnusson
## [doc1319] ptember – Peter IV , |king | of Aragon ( d. ) dat
## [doc1319]             Summer – |King | Denis I ( Poet King 
## [doc1319] Magnus IV is elected |king | of Sweden , establis
## [doc1320] ust ) ( or Cruel ) , |king | of Portugal ( d. ) M
## [doc1320] oet ( d. ) Louis I , |king | of Naples ( Capetian
## [doc1320] oet ( d. ) Louis I , |king | of Naples ( Capetian
## [doc1320]                      |King | James II ( Just ) , 
## [doc1320]  I ( Short ) becomes |king | of a reunited Poland
## [doc1321]                      |King | Philip V ( Tall ) or
## [doc1321]         [ ] August – |King | Edward              
## [doc1321] – Birger Magnusson , |king | of Sweden ( House of
## [doc1321] int King ) , Serbian |king | ( b. ) [ ]          
## [doc1322] Serbian nobleman and |king | ( b. ) Theodore Svet
## [doc1322] III Decanski becomes |king | of Serbia , having d
## [doc1322] ronation for a young |king | in Serbia , Decanski
## [doc1322] Serbian nobleman and |king | ( b. ) Theodore Svet
## [doc1322]  Philip V ( Tall ) , |king | of France ( b. ) Jan
## [doc1322] mes co-ruler ( young |king | ) .                 
## [doc1322] e of Burton Bridge : |King | Edward              
## [doc1322]            January – |King | Philip V ( Tall ) di
## [doc1323] h his brother Leo II |King | Leo II of Galicia , 
## [doc1323]                May – |King | Edward              
## [doc1323]                      |King | Andrew of Galicia , 
## [doc1324] ort of Sweden ( b. ) |King | Sancho of Majorca ( 
## [doc1324]              March – |King | David II of Scotland
## [doc1324] xcommunicates German |king | Louis IV , as Louis 
## [doc1325] ser ( d. ) January – |King | Dinis of Portugal ( 
## [doc1326]  Morea ( d. ) Seii , |King | of Chuzan ( d. ) Sim
## [doc1326]              March – |King | Louis I of Hungary (
## [doc1326]               Seii , |King | of Chuzan ( d. )    
## [doc1327] pitaller September – |King | Edward II of England
## [doc1327] vember or November – |King | James II of Aragon (
## [doc1328] nce ( d. ) October – |King | Peter I of Cyprus ( 
## [doc1328]         ) February – |King | Charles IV of France
## [doc1328]                May – |King | Philip VI of France 
## [doc1329] une – Robert Bruce , |King | of Scotland ( b. ) A
## [doc1329]           February – |King | John of Bohemia ( of
## [doc1330]            October – |King | Edward III of Englan
## [doc1331] san declares himself |king | of Serbia .         
## [doc1332] ror ( d. ) October – |King | Charles II of Navarr
## [doc1332] of Scotland August – |King | Christopher II of De
## [doc1332] lliol crowns himself |King | of Scotland .       
## [doc1333] an friar and March – |King | Wladyslaw I of Polan
## [doc1333]               June – |King | Edward III of Englan
## [doc1334] oy ( d . ) January – |King | Henry II of Castile 
## [doc1334] avanese ruler ( d. ) |King | James I of Cyprus ( 
## [doc1335] ic , de jure Serbian |king | Milica , wife of Pri
## [doc1335]      Georgians under |King | George V ( Brilliant
## [doc1339]     Erik Magnusson , |king | of parts of Sweden 1
## [doc1339]     Erik Magnusson , |king | of parts of Sweden 1
## [doc1340] rk , son of deceased |King | Christopher II , is 
## [doc1340]            January – |King | Edward III of Englan
## [doc1340] rk , son of deceased |King | Christopher II , is 
## [doc1340] alado in Spain : The |kings| of Castile and Portu
## [doc1340] August – Haakon VI , |king | of Norway 1355–1380 
## [doc1340] e , Chief Justice of |King | Edward III of Englan
## [doc1341] ederick III Simple , |King | of Sicily ( d. ) Nov
## [doc1341] cily ( b. ) August – |King | Levon IV of Armenia 
## [doc1342]  father , Peter II , |king | of Sicily and duke o
## [doc1342]               July – |King | Charles             
## [doc1342] ly – Louis I becomes |king | of Hungary .        
## [doc1343]    The Four Estonian |kings| are murdered , at ne
## [doc1344] l – Constantine II , |King | of Armenia , is kill
## [doc1344] l – Constantine II , |King | of Armenia ( Gosdant
## [doc1344]                      |King | Peter IV of Aragon d
## [doc1344]                      |King | Edward III of Englan
## [doc1345]     Finally , it was |King | George Brilliant ( 1
## [doc1345] lbach Ó Conchobair , |King | of Connacht John Vat
## [doc1345] lbach Ó Conchobair , |King | of Connacht John Vat
## [doc1345] len of Bosnia ( d. ) |King | Charles III of Naple
## [doc1345] ermission by Swedish |king | .                   
## [doc1345]            October – |King | Fernando I of Portug
## [doc1346] e , Jean de France , |King | Philippe 's son , be
## [doc1346] les was chosen Roman |king | in opposition to Lou
## [doc1346]            On July , |King | Edward III crossed E
## [doc1346]           The French |king | , Philippe VI , dest
## [doc1346]  some as a priest 's |king | ( Pfaffenkönig ) .  
## [doc1346]           The French |king | mounted a defence ne
## [doc1346]                      |King |
## [doc1346]                  The |King | of Denmark even made
## [doc1347]                      |King | Phillip of France me
## [doc1347] in November , French |King | Phillip was told in 
## [doc1347]                      |King | Phillip of France me
## [doc1349] Schwarzburg , German |king | ( b. )              
## [doc1351]                      |King | Gongmin ascends in G
## [doc1354]  vassal to Hungarian |king | Louis I .           
## [doc1355]            January – |King | Alphonso IV of Portu
## [doc1356] II proclaims himself |king | of Sweden , in oppos
## [doc1357] infanta ( b. ) May – |King | Afonso IV of Portuga
## [doc1357] urrough - Kavanagh , |King | of Leinster ( d. ) H
## [doc1357] son is recognized as |king | of most of Sweden , 
## [doc1358] tile ( d. ) August – |King | John I of Castile ( 
## [doc1358]                    – |King | Haakon              
## [doc1359] e – Erik Magnusson , |king | of Sweden since ( b.
## [doc1360]  same year by former |king | , Muhammed V .      
## [doc1360] avid IX of Georgia , |King | of Georgia Geoffrey 
## [doc1360] avid IX of Georgia , |King | of Georgia Geoffrey 
## [doc1360]                      |King | Valdemar Atterdag of
## [doc1361]                      |King | Charles III of Navar
## [doc1361]         Wenceslaus , |King | of Romans , King of 
## [doc1361]                      |King | Valdemar            
## [doc1361]  vassal ruler ( d. ) |King | Charles III of Navar
## [doc1362]  , proclaims himself |king | of Sweden in opposit
## [doc1362]           February – |King | Haakon              
## [doc1362]  – Constantine III , |King | of Armenia ( b. ) da
## [doc1362] r , Queen consort of |king | David II of Scotland
## [doc1364] ician ( d. ) April – |King | John II of France ( 
## [doc1364]     February – Joint |kings| Magnus Eriksson and 
## [doc1365] journey of Majapahit |king | , Hayam Wuruk , his 
## [doc1365] U of Goryeo , Korean |king | ( d. ) date unknown 
## [doc1367]                      |King | Peter I of Portugal 
## [doc1367] tician ( d. ) June – |King | Taejong of Joseon , 
## [doc1367]            January – |King | Richard II of Englan
## [doc1368]                  The |King | of Norway sends last
## [doc1368] or ( d. ) December – |King | Charles VI of France
## [doc1369]                      |King | Charles V of France 
## [doc1369]                      |King | Constantine I of Geo
## [doc1369] ary ( d. ) January – |King | Peter I of Cyprus ( 
## [doc1369] amathibodi I , first |king | of Ayutthaya ( b. ) 
## [doc1370]  Casimir III Great , |king | of Poland , dies as 
## [doc1370]                      |King | Olav IV of Norway ( 
## [doc1370]  Casimir III Great , |King | of Poland ( b. ) Dec
## [doc1370]                      |King | Olav IV of Norway ( 
## [doc1371] rnjavcevic , Serbian |king |
## [doc1371] becomes first Stuart |king | of Scotland , after 
## [doc1372] agrat I of Imereti , |King | of Georgia          
## [doc1373] own Constantine IV , |King | of Armenia ( assassi
## [doc1373]     Constantine IV , |King | of Armenia ( assassi
## [doc1374]            October – |King | Gongmin of Goryeo is
## [doc1374]            October – |King | Gongmin of Goryeo ( 
## [doc1374] r – Magnus Ericson , |king | of Sweden ( b. ) dat
## [doc1375]      Lan Kham Deng , |King | of Lan Xang 1416– ( 
## [doc1375]            October – |King | Valdemar IV of Denma
## [doc1375]      Lan Kham Deng , |King | of Lan Xang 1416– ( 
## [doc1375] known Adityawarman , |king | of Malayapura Margar
## [doc1375]           The future |King | John I of Castile ma
## [doc1375] ruler Adityawarman , |king | of Malayapura Margar
## [doc1377] – Frederick Simple , |King | of Sicily ( b. )    
## [doc1377]  of Lithuania June – |King | Edward III of Englan
## [doc1377] ard III , is crowned |king | of England .        
## [doc1377]           February – |King | Ladislaus of Naples 
## [doc1377]                      |King | U of Goryeo adopts M
## [doc1379]                May – |King | Henry II of Castile 
## [doc1380]          September – |King | Charles V of France 
## [doc1380] uitl II , Tlatoani ( |king | ) of Tenochtitlan ( 
## [doc1380] mathematician ( d. ) |King | Lukeni lua Nimi of K
## [doc1380] ry ( d. ) November – |King | Ferdinand I of Arago
## [doc1380] mathematician ( d. ) |King | Lukeni lua Nimi of K
## [doc1381]                      |King | Richard             
## [doc1382]  of Sistan October – |King | Peter II of Cyprus O
## [doc1382]  Eric of Pomerania , |King | of Norway , Sweden a
## [doc1382]  England by marrying |King | Richard II ; marriag
## [doc1382]          September – |King | Louis I of Hungary (
## [doc1383]            October – |King | Fernando I of Portug
## [doc1383] in Emperor October – |King | Fernando I of Portug
## [doc1383]                May – |King | John I of Castile an
## [doc1384]          Liubartas , |King | of Galicia Muhammad 
## [doc1385]             August – |King | Richard II of Englan
## [doc1386] ugust or September – |King | Henry V of England (
## [doc1386]                May – |King | John                
## [doc1387] of Hungary January – |King | Charles II of Navarr
## [doc1387] sman ( b. ) August – |King | Olaf IV of Norway / 
## [doc1387]      August – Olaf , |King | of Norway and Denmar
## [doc1388]                      |King | U is forced from pow
## [doc1388] rthrows Tran Hien as |King | of Vietnam .        
## [doc1388] for a loan to Polish |king | .                   
## [doc1389] U of Goryeo , Korean |king | ( b. )              
## [doc1389] U of Goryeo , Korean |king | ( b. ) date unknown 
## [doc1389] yeo , deposed Korean |king | ( b. )              
## [doc1389] yeo , deposed Korean |king | ( b. )              
## [doc1389] cceeds Kade Alunu as |King | of Kanem - Bornu Emp
## [doc1389] ion in Korea ( – ) : |King |
## [doc1389] Wallachia and Polish |king | Wladyslaw II Jagiell
## [doc1390] of Hereford ( future |King | Henry IV of England 
## [doc1390] izond ( b. ) April – |King | Robert II of Scotlan
## [doc1390]            October – |King | John                
## [doc1391]   October – Edward , |King | of Portugal ( d. ) N
## [doc1391]              March – |King |
## [doc1392]                      |King | Jogaila of Poland an
## [doc1393]           November – |King | Leo V of Armenia ( b
## [doc1393]                      |King | Stjepan Dabiša of Bo
## [doc1393] pite his treaty with |king | of Poland , Roman I 
## [doc1393]                      |King | James I of Cyprus in
## [doc1394]          September – |King | Charles VI of France
## [doc1394] lhi Sultanate Former |King | Gongyang of Goryeo (
## [doc1398]            October – |King | Taejo of Joseon abdi
## [doc1398]            September |King | Richard             
## [doc1398]                      |King | Richard             
## [doc1399] y Bolingbroke as new |king | of England .        
## [doc1399]                      |King | Jogaila becomes sole
## [doc1399] , after overthrowing |King | Louis II .          
## [doc1400] chard II restored as |king | .                   
## [doc1400]         It is likely |King | Henry IV ordered his
## [doc1400] ck -Lüneburg , rival |King | of Romans June – Jan
## [doc1400]           February – |King | Richard II of Englan
## [doc1400] modern - day Korea , |King | Jeongjong of Joseon 
## [doc1401] an pirate November – |King | Tarabya of Ava ( b. 
## [doc1401]             Rupert , |King | of Germany , is crow
## [doc1402]                      |King |
## [doc1402]                      |King | Jogaila of Poland– L
## [doc1403] le ( d. ) February – |King | Charles VII of Franc
## [doc1403]           March – As |King | Martin              
## [doc1403] , an ambassador from |king | of Castile to Timur 
## [doc1403] ttle of Shrewsbury : |King | Henry               
## [doc1403]           February – |King | Henry               
## [doc1404] eds Stefan Ostoja as |King | of Bosnia .         
## [doc1405]              March – |King | John II of Castile (
## [doc1406]           December – |King | Henry III of Castile
## [doc1406]              April – |King | Robert III of Scotla
## [doc1408]      Karl Knutsson , |King | of Sweden ( d . ) Fe
## [doc1409]               July – |King | Martin              
## [doc1409] ry – René of Anjou , |king | of Naples ( d. ) [ ]
## [doc1409] pire fleet , deposes |king | of Sri Lanka .      
## [doc1411] d presents Sinhalese |king | , captured during Mi
## [doc1411]          September – |King | Henry               
## [doc1411] , ruler of Moravia , |King | of Romans February –
## [doc1412] ekt of Mecklenburg , |king | of Sweden 1364–1389 
## [doc1414] utenant of Ireland , |King | of Isle of Man ( b. 
## [doc1414] utenant of Ireland , |King | of Isle of Man ( b. 
## [doc1414]             August – |King | Ladislaus of Naples 
## [doc1414] nt Yeshes title of a |king | , upon a return visi
## [doc1415] aen Phaeo , Lan Xang |king | ( d. ) Benedetto Acc
## [doc1415] aen Phaeo , Lan Xang |king | ( d. ) April – Manue
## [doc1417]             August – |King | Henry V of England b
## [doc1417] urrough - Kavanagh , |King | of Leinster ( b. )  
## [doc1418]                      |King |
## [doc1418]  John II of Cyprus , |King | of Cyprus and Armeni
## [doc1418]          September – |King | Taejong ( r. 1400-14
## [doc1419] ugust – Wenceslaus , |King | of Romans , King of 
## [doc1420]                      |King | Lukeni lua Nimi of K
## [doc1420] dominant in France , |King | Charles VI of France
## [doc1420]                      |King | Lukeni lua Nimi of K
## [doc1420] eorge of Podebrady , |King | of Bohemia ( d. ) [ 
## [doc1421] n ( d . ) December – |King | Henry VI of England 
## [doc1422]                      |King | Charles VI of France
## [doc1422] undy ( b. ) August – |King | Henry V of England (
## [doc1423] of House of Valois , |King | of France from to ( 
## [doc1424] lar ( d. ) October – |King | Wladyslaw III of Pol
## [doc1425]        ) September – |King | Charles III of Navar
## [doc1426]                      |King | Janus of Cyprus is d
## [doc1426] stian of Oldenburg , |King | of Denmark 1448– , o
## [doc1427] simir IV Jagiellon , |King | of Poland ( d. ) dat
## [doc1430] ses ( d. ) October – |King | James II of Scotland
## [doc1432]                      |King | Afonso V of Portugal
## [doc1433]  ( b. ) [ ] August – |King | John I of Portugal (
## [doc1434] ing to deposition of |king | .                   
## [doc1434]             August – |King | Eric of Pomerania is
## [doc1434]           November – |King | Louis III of Anjou (
## [doc1434]               June – |King | Wladislaus II of Pol
## [doc1435] nia is reinstated as |king | of Sweden , only bri
## [doc1435]  ) , in absence of a |king | , on January .      
## [doc1435] tervention of Polish |king | .                   
## [doc1436]  again reinstated as |king | of Sweden .         
## [doc1437]           February – |King | James I of Scotland 
## [doc1438] September – Edward , |King | of Portugal ( b. )  
## [doc1438]  Eric of Pomerania , |King | of Sweden , Denmark 
## [doc1438]  Eric of Pomerania , |King | of Sweden , Denmark 
## [doc1439]  This measure grants |king | exclusive right to r
## [doc1439]  Eric of Pomerania , |King | of Sweden , Denmark 
## [doc1440] s , as newly elected |king | of Denmark Christoph
## [doc1441]  Danjong of Joseon , |King | of Joseon ( d. ) Nov
## [doc1441]                      |King | 's College , Cambrid
## [doc1442] on proclaims himself |King | of Naples .         
## [doc1442] e ( d. ) [ ] April – |King | Edward IV of England
## [doc1443]                      |King |
## [doc1444]           November – |King | Wladyslaw III of Pol
## [doc1448]                      |King | Alphonso II of Naple
## [doc1448] stopher of Bavaria , |King | of Denmark , Norway 
## [doc1448] stopher of Bavaria , |King | of Denmark , Norway 
## [doc1448] s publicly hailed as |king | at Mora Stones , and
## [doc1449]                      |King | Afonso V of Portugal
## [doc1452] Siena ( d. ) March – |King | Ferdinand           
## [doc1452] f Aragon , Aragonese |king | and first king of a 
## [doc1452]            October – |King | Richard III of Engla
## [doc1452] r ( d. ) [ ] April – |King | Frederick of Naples 
## [doc1454]                      |King |
## [doc1454] of Canterbury July – |King | John II of Castile (
## [doc1455]      Forces loyal to |King | James II of Scotland
## [doc1455]                    ) |King | John II of Portugal 
## [doc1455]                March |King | John II of Portugal 
## [doc1456]      Vladislaus II , |king | of Bohemia , Hungary
## [doc1457]              March – |King | James II of Scotland
## [doc1457] ristian I is elected |king | of Sweden , ending w
## [doc1457] al ( d . ) January – |King |
## [doc1457]           November – |King | Ladislaus Posthumus 
## [doc1457]  Danjong of Joseon , |King | of Joseon ( b. ) dat
## [doc1458] of Podebrady becomes |king | of Bohemia .        
## [doc1458] ias Corvinus becomes |king | of Hungary , at age 
## [doc1458]               June – |King | Alfonso V of Aragon 
## [doc1458]            October – |King | Afonso V of Portugal
## [doc1459]                      |King | Stephen Thomas of Bo
## [doc1459] an ( d. ) December – |King | John I Albert of Pol
## [doc1459]  Eric of Pomerania , |King | of Norway , Denmark 
## [doc1460]             August – |King | James II of Scotland
## [doc1460]              March – |King | Christian I of Denma
## [doc1461]  , Prince of Viana , |King | of Navarre ( b. )   
## [doc1461] les VII of France as |king | ( reigns until ) .  
## [doc1461] lexander Jagiellon , |King | of Poland ( d . ) [ 
## [doc1461]               July – |King | Charles VII of Franc
## [doc1462] ouis XII of France , |King | of France ( 1498– ) 
## [doc1462]                      |King |
## [doc1463]  ) Ponhea Yat , last |king | of Khmer Empire and 
## [doc1463]  ) Ponhea Yat , last |king | of Khmer Empire and 
## [doc1463] int ( b. ) [ ] May – |King | Stephen Tomaševic of
## [doc1465]        July – Former |King | Henry VI of England 
## [doc1467]                      |King | Matthias Corvinus fo
## [doc1468]     Sejo of Joseon , |King | of Joseon ( b. )    
## [doc1468] t date , Sonni Ali , |king | of Songhai Empire , 
## [doc1468] er Harlech Castle to |King | Edward IV of England
## [doc1469] hor ( d. ) [ ] May – |King | Manuel              
## [doc1469]                      |King | Yejong of Joseon ( b
## [doc1469] burg ( d. ) August – |King | Ferdinand II of Napl
## [doc1471] use of Commons May – |King | Henry VI of England 
## [doc1471]                      |King | Edward defeats a Lan
## [doc1471]            October – |King | Frederick I of Denma
## [doc1471]             August – |King | Afonso V of Portugal
## [doc1471] n , last independent |King | of Champa Shin Sawbu
## [doc1471] n , last independent |King | of Champa Shin Sawbu
## [doc1471]                May – |King | Edward IV celebrates
## [doc1473]                      |King | James IV of Scotland
## [doc1473]  Catherine Cornaro , |king | of Cyprus ( d . )   
## [doc1474]           December – |King | Henry IV of Castile 
## [doc1476] onsangun of Joseon , |King | of Korean Joseon Dyn
## [doc1478]               July – |King | Philip              
## [doc1479] ria ( b. ) January – |King | John II of Aragon ( 
## [doc1480] ly – René of Anjou , |king | of Naples ( b. ) [ ]
## [doc1481]               July – |King | Christian II of Denm
## [doc1481] e of Anjou , titular |King | of Naples ( b. )    
## [doc1481]             August – |King | Afonso V of Portugal
## [doc1481] e of Anjou , titular |King | of Naples ( b. )    
## [doc1483] ore his coronation , |King | Edward V of England 
## [doc1483] ed in a plot against |king | .                   
## [doc1483] iero ( b. ) August – |King | Louis XI of France (
## [doc1483]  Neville are crowned |king | and Queen of England
## [doc1483]              April – |King | Edward IV of England
## [doc1483]                      |King | Edward V of England 
## [doc1484]                  The |King | of Portugal appoints
## [doc1485] Battle of Bosworth : |King | Richard III of Engla
## [doc1485]                      |King | Richard             
## [doc1485]            October – |King | Henry VII of England
## [doc1485]                      |King | Richard III of Engla
## [doc1486] a Banlang , Lan Xang |king | ( b. ) Tízoc , Aztec
## [doc1486]            January – |King |
## [doc1486] a Banlang , Lan Xang |king | ( b. ) probable –   
## [doc1487]  ) May – Tilokaraj , |king | of Lan Na ( b. )    
## [doc1488] lokkanat , Ayutthaya |king | ( b. )              
## [doc1488]             Uy M<U+1EE5>c , |king | of later Lê dynasty 
## [doc1488] lokkanat , Ayutthaya |king | ( b. )              
## [doc1488]               June – |King | James III of Scotlan
## [doc1488]  of Scotland becomes |king | after his father is 
## [doc1488] er : Troops loyal to |King | Charles VIII of Fran
## [doc1489]                      |King |
## [doc1489]               June – |King | James IV grants Andr
## [doc1490]              April – |King | Matthias Corvinus of
## [doc1490] es all who ally with |king | of France will be co
## [doc1491]  Lapulapu , Filipino |king | ( d. ) Azai Sukemasa
## [doc1491]           December – |King | Charles VIII of Fran
## [doc1491]  Lapulapu , Filipino |king | ( d. ) Azai Sukemasa
## [doc1492] maraja Wodeyar III , |King | of Mysore ( d. ) Oct
## [doc1492] simir IV Jagiellon , |King | of Poland ( b. )    
## [doc1492] Dhammazedi , Burmese |king | of Hanthawaddy ( b. 
## [doc1493]  ) January Min Bin , |king | of Arakan ( d. ) Gio
## [doc1494] eongjong of Joseon , |King | of Joseon ( b. )    
## [doc1494] ) ( d. ) September – |King | Francis I of France 
## [doc1494]            January – |King | Ferdinand I of Naple
## [doc1495] rat III of Imereti , |King | of Imereti ( d .    
## [doc1495]            October – |King | Manuel              
## [doc1495]            October – |King | John II of Portugal 
## [doc1495] le ( b. ) December – |King | Alphonso II of Naple
## [doc1495] ian War of 1494–98 : |King | Charles VIII of Fran
## [doc1495]           February – |King | 's College , Aberdee
## [doc1495]      Summer – John , |King | of Denmark , sets sa
## [doc1496]           February – |King |
## [doc1496] and to Orkney , from |King | James IV of Scotland
## [doc1496]          September – |King | Ferdinand II of Napl
## [doc1496] England ( d. ) May – |King | Gustav I of Sweden (
## [doc1496]           December – |King | Manuel              
## [doc1497]           December – |King | Manuel              
## [doc1497]                      |King | John of Denmark and 
## [doc1498] er ( b. c. ) April – |King | Charles VIII of Fran
## [doc1501]                      |King | Louis appoints Louis
## [doc1501]             August – |King | Federico of Naples a
## [doc1501]       Minkhaung II , |king | of Ava ( b. ) April 
## [doc1501]      August – Hans , |King | of Denmark , Norway 
## [doc1502] ilian I , Germany 's |King | of Romans signs a tr
## [doc1502]                  The |King | 's School , Macclesf
## [doc1502] riter ( d . ) June – |King | John III of Portugal
## [doc1503] enry II of Navarre , |King | of Navarre ( 1517–15
## [doc1504]              March – |King | James IV of Scotland
## [doc1504]           November – |King | Frederick IV of Napl
## [doc1505]           The future |King | Henry VIII of Englan
## [doc1505] n Portuguese India , |King | of Cannanore gives p
## [doc1505]              March – |King | Alexander Jagiellon 
## [doc1505] ish Uprising against |King | Hans of Denmark ( wh
## [doc1505]                  The |King | of Kotte , Dharma Pa
## [doc1505] ish Uprising against |King | Hans of Denmark ( wh
## [doc1506] ceeds his brother as |king | of Poland . [ ] Sept
## [doc1506]             August – |King | Alexander Jagiellon 
## [doc1506]              March – |King | Vladislaus          
## [doc1506]          September – |King | Philip I of Castile 
## [doc1506] onsangun of Joseon , |king | of Korean Joseon Dyn
## [doc1507]           In Italy , |King | Louis XII of France 
## [doc1507]               June – |King | Ferdinand           
## [doc1507]           In Italy , |King | Louis XII of France 
## [doc1507]           [ ] July – |King | Ferdinand           
## [doc1507]               July – |King | Ferdinand           
## [doc1507]          September — |King | James               
## [doc1507]                      |King |
## [doc1507] amaraja Wodeyar IV , |King | of Mysore ( d . ) Au
## [doc1507]  is formally crowned |King | of Poland , at a cer
## [doc1508]         Maximilian , |King | of Romans , proclaim
## [doc1508] eath of his father , |King | Oxlahuh - Tz 'i , Hu
## [doc1508]            October – |King | Louis XII of France 
## [doc1508] nuary – Maximilian , |King | of Romans , requests
## [doc1509]             Uy M<U+1EE5>c , |king | of later Lê Dynasty 
## [doc1509] nry VII of England , |King | of England and Lord 
## [doc1510]           Adviser to |King | Louis XII of France 
## [doc1512] ames V of Scotland , |King | of Scots ( d. ) [ ] 
## [doc1512]  ) January – Henry , |King | of Portugal and Card
## [doc1513]           February – |King | John of Denmark , No
## [doc1513]                      |King | James               
## [doc1514] III John was crowned |king | in .                
## [doc1514]                      |King | Christian II is crow
## [doc1514]             August – |King | Henry VIII of Englan
## [doc1515] – Injong of Joseon , |king | of Joseon Dynasty of
## [doc1515] ) Injong of Joseon , |king | of Joseon Dynasty of
## [doc1515] ) Injong of Joseon , |king | of Joseon Dynasty of
## [doc1515] er ( d . ) January – |King | Louis XII of France 
## [doc1516]             August – |King | Francis I of France 
## [doc1516] nuary – Bayinnaung , |King | of Burma ( d . ) Feb
## [doc1516] ril – Tabinshwehti , |King | of Burma ( d . ) Apr
## [doc1516]               June – |King | John III of Navarre 
## [doc1516]            January – |King | Ferdinand II of Arag
## [doc1516] ch – Vladislaus II , |king | of Bohemia , Hungary
## [doc1518] ed Sigismund I Old , |King | of Poland and Grand 
## [doc1519] oman ( d . ) March – |King | Henry II of France (
## [doc1520] a , last independent |king | of Granada ( d . ) I
## [doc1520] of Kantipur Visoun , |king | of Lan Xang ( b. )  
## [doc1520] of Kantipur Visoun , |king | of Lan Xang ( b. )  
## [doc1520] lan ( d . ) August – |King | Sigismund II Augustu
## [doc1520]            January – |King | Christian II of Denm
## [doc1520] a , last independent |king | of Granada ( d . ) I
## [doc1520] unknown Cacamatzin , |king | of Texcoco ( altepet
## [doc1520]  ( b. ) Cacamatzin , |king | of Texcoco ( altepet
## [doc1520]                      |King | Manuel              
## [doc1520] istian II is crowned |king | of Sweden .         
## [doc1520]               June – |King |
## [doc1521]           December – |King | Manuel I of Portugal
## [doc1522] st – Udai Singh II , |King | of Mewar ( d . ) Aug
## [doc1523] stav Vasa is elected |king | of Sweden , finally 
## [doc1526] w of Prome , Burmese |king | of Prome Binnya Ran 
## [doc1526] orer ( b. ) August – |King | Louis II of Hungary 
## [doc1526] w of Prome , Burmese |king | of Prome Binnya Ran 
## [doc1527]  ) May – Philip II , |King | of Spain ( d. ) [ ] 
## [doc1527] ankyawshin , Burmese |king | of Ava ( b. )       
## [doc1527] Odense ( Denmark ) : |King | Frederick           
## [doc1527] nand I of Austria as |King | of Croatia in Parlia
## [doc1528] of Sweden is crowned |king | of Sweden , having a
## [doc1529] ds Ramathibodi II as |king | of Ayutthaya .      
## [doc1530] father Mingyi Nyo as |king | of Toungoo dynasty ,
## [doc1531] rs to be over , when |king | accepts an offer mad
## [doc1533] lois , second son of |king | of France .         
## [doc1533]            January – |King |
## [doc1533] tria : Ferdinand I , |King | of Romans , withdraw
## [doc1533] esman ( b. ) April – |King | Frederick I of Denma
## [doc1533]  in England declares |king | to be supreme sovere
## [doc1533]         Bayin Htwe , |king | of Prome in Burma Ju
## [doc1533]  of Orléans – future |King | Henry II of France –
## [doc1533] er – Stefan Batory , |King | of Poland ( d . ) Oc
## [doc1533]                May – |King |
## [doc1534] f Christian III , as |King | of Denmark , takes p
## [doc1534] urchmen to submit to |king | , and forbidding pub
## [doc1534] rlord ( d . ) July – |King | Frederick II of Denm
## [doc1535] mber – Nanda Bayin , |King | of Burma ( d .      
## [doc1536] publicly challenging |king | of France to a duel 
## [doc1536]                      |King |
## [doc1536] publicly challenging |king | of France to a duel 
## [doc1539]             August – |King | Francis I of France 
## [doc1539]  Narapati of Prome , |king | of Prome in Burma . 
## [doc1540] uly – John Zápolya , |King | of Hungary ( b. c. )
## [doc1540] tap , Indian warrior |king | ( d . ) May Paolo Pa
## [doc1540]            January – |King | Henry VIII marries  
## [doc1540]               July – |King |
## [doc1540] ecuted on order from |king | , on charges of trea
## [doc1540]  Sigismund Zápolya , |King | of Hungary ( d . ) J
## [doc1542]  Lapulapu , Filipino |king | ( b. )              
## [doc1542]  Lapulapu , Filipino |king | ( b. )              
## [doc1542]           December – |King | James V of Scotland 
## [doc1543]                      |King | Gustav              
## [doc1543]               July – |King | Henry VIII of Englan
## [doc1543]                March |King | Gustav              
## [doc1543]           February – |King |
## [doc1544]            January – |King | Francis II of France
## [doc1544]  Siege of Boulogne : |King |
## [doc1545]          Hkonmaing , |king | of Ava kingdom ( b. 
## [doc1545] – Injong of Joseon , |king | of Joseon Dynasty of
## [doc1545]          Hkonmaing , |king | of Ava kingdom ( b. 
## [doc1547] ( b. ) Photisarath , |King | of Laos ( b. )      
## [doc1547]            January – |King |
## [doc1547] ( b. ) Photisarath , |King | of Laos ( b. )      
## [doc1547]            January – |King | Henry VIII of Englan
## [doc1547]              March – |King | Francis I of France 
## [doc1547]              March – |King | Francis             
## [doc1548] nd , deputies demand |king | renounce his wife Ba
## [doc1548]                      |King | Sigismund I Old of P
## [doc1549]                      |King | Tabinshwehti of Burm
## [doc1550] nun ( d. ) October – |King | Charles IX of Sweden
## [doc1550]               June – |King | Charles IX of France
## [doc1550]              April – |King | Tabinshwehti of Burm
## [doc1550] Bhuvanaikabahu VII , |King | of Kotte ( b. ) date
## [doc1551]          September – |King | Henry III of France 
## [doc1552]                      |King | Edward VI of England
## [doc1552] e – Raja Wodeyar I , |King | of Mysore ( d . ) Ju
## [doc1552] – Seonjo of Joseon , |King | of Joseon ( d . ) De
## [doc1553]               July – |King | Edward VI of England
## [doc1553] maraja Wodeyar III , |King | of Mysore ( b. )    
## [doc1553] aung of Prome , last |king | of Prome in Burma ( 
## [doc1553] an ( d. ) December – |King | Henry IV of France (
## [doc1554] ayinnaung is crowned |king | of Burmese Taungoo D
## [doc1554]  January – Min Bin , |king | of Arakan ( b. ) Jan
## [doc1554] ( d. ) [ ] January – |King | Sebastian of Portuga
## [doc1555] ne ( d. ) Naresuan , |King | of Ayutthaya ( d .  
## [doc1555] ne ( d. ) Naresuan , |King | of Ayutthaya ( d .  
## [doc1555] er – Nyaungyan Min , |king | of Burma ( d .      
## [doc1556]               Future |King | Prince John , younge
## [doc1556]                  The |kings| of Spain take contro
## [doc1557]               June – |King | John III of Portugal
## [doc1558]  history of Poland : |King | Sigismund II Augustu
## [doc1559] use of Guise and new |king | 's mother Catherine 
## [doc1559]  , bride 's father , |King | Henry II of France ,
## [doc1559]               June – |King | Philip              
## [doc1559] as , succeeds him as |king | .                   
## [doc1559]     The - year - old |King | Francis II of France
## [doc1559]            January – |King | Christian III of Den
## [doc1559]            January – |King | Christian II of Denm
## [doc1559]               July – |King | Henry II of France (
## [doc1559] beating local Khadka |kings| , which is origin of
## [doc1560]           December – |King | Francis II of France
## [doc1560]          September – |King | Gustav I of Sweden (
## [doc1560] , where young French |king | and queen are residi
## [doc1561] ecretary of State to |King | James I ( d. ) Octob
## [doc1561] cts itself to Polish |king | and Grand Duke of Li
## [doc1562] nand I , succeeds as |king | of Kingdom of Bohemi
## [doc1563]                      |King | Frederick           
## [doc1564] ed report of a ' rat |king | '. [ ] approx .     
## [doc1566]             ) June – |King | James VI of Scotland
## [doc1567]                      |King | Frederick           
## [doc1567] he mentally unstable |King | Erik XIV of Sweden a
## [doc1568]          The Swedish |king | Eric XIV is deposed 
## [doc1569] rathirat , Ayutthaya |king | ( b. )              
## [doc1569] rathirat , Ayutthaya |king | ( b. )              
## [doc1569] hakkraphat , Siamese |King | of Ayutthaya Kingdom
## [doc1571] thathirath , Laotian |king | of Lan Na and Lan Xa
## [doc1571]  Sigismund Zápolya , |King | of Hungary ( b. )   
## [doc1571] thathirath , Laotian |king | of Lan Na and Lan Xa
## [doc1572] : Catholic forces of |king | lay siege to Sancerr
## [doc1572]               July – |King | Sigismund II Augustu
## [doc1572]      Udai Singh II , |King | of Mewar ( b. )     
## [doc1572] : Catholic forces of |king | lay siege to Sancerr
## [doc1572]      Udai Singh II , |King | of Mewar ( b. ) Aegi
## [doc1574]                May – |King | Charles IX of France
## [doc1576] n Báthory is crowned |king | of Poland .         
## [doc1576] amaraja Wodeyar IV , |King | of Mysore ( b. ) dat
## [doc1577] ammin ( d. ) April – |King | Christian IV of Denm
## [doc1577]           February – |King | Eric XIV of Sweden (
## [doc1578] slator ( b. ) August |King | Sebastian of Portuga
## [doc1579] ravongsa I , Laotian |king | of Lan Xang probable
## [doc1579]  governor in name of |king | Philip II of Spain .
## [doc1579] ravongsa I , Laotian |king | of Lan Xang Giovanni
## [doc1580] The death of Henry , |King | of Portugal , with n
## [doc1580]            January – |King | Henry of Portugal ( 
## [doc1580] ch – Iberian Union : |King | Philip              
## [doc1581] oman ( b. ) August – |King | Mayadunne of Sitawak
## [doc1581] bia ( b. ) October – |King | Bayinnaung of Burma 
## [doc1581]            October – |King | Bayinnaung , who cre
## [doc1582]  Soulintha , Laotian |king | of Lan Xang ( b. )  
## [doc1582]  Soulintha , Laotian |king | of Lan Xang ( b. )  
## [doc1582]              April – |King | James VI of Scotland
## [doc1583]              March – |King | Magnus of Livonia ( 
## [doc1586] er – Stefan Batory , |King | of Poland ( b. ) [ ]
## [doc1587] , Saul Wahl is named |king | of Poland ; he is de
## [doc1587] igismund III Vasa as |king | .                   
## [doc1588]               July – |King |
## [doc1588] Christian IV becomes |king | of Denmark – Norway 
## [doc1588] holar ( b. ) April – |King | Frederick II of Denm
## [doc1588]  reject Henry III as |king | , forcing him to sid
## [doc1589] and Chief Justice to |King | Charles I of England
## [doc1589]   Battle of Arques : |King | Henry IV of France '
## [doc1589]                  The |King | makes peace with his
## [doc1589]             August – |King | Henry III of France 
## [doc1589]             August – |King | Henry III of France 
## [doc1592] at ( b. ) November – |King | John III of Sweden (
## [doc1592] Henry IV of France , |King | designate of Henry I
## [doc1593]    January – Siamese |King | Naresuan , in combat
## [doc1594]  of Sweden , Swedish |king | and general ( d. ) D
## [doc1594] t ( d . ) December – |King | Gustavus            
## [doc1595] Jesuit ( d. ) June – |King | Wladislaus IV of Pol
## [doc1595] f Joseon , sixteenth |king | of Joseon dynasty in
## [doc1596]               July – |King | Dominicus Corea ( Ed
## [doc1596]                      |King | Sigismund III Vasa m
## [doc1599]       July – Swedish |King | Sigismund III Vasa i
## [doc1600] mber – Nanda Bayin , |King | of Burma ( b. )     
## [doc1601]          September – |King | Louis XIII of France
## [doc1602]                      |King | David I of Kakheti (
## [doc1602]          September – |King | Sigismund III Vasa o
## [doc1602]                      |King | David I of Kakheti (
## [doc1602] ) becomes last Irish |King | of Tyrconnell upon d
## [doc1603] amaraja Wodeyar VI , |King | of Mysore ( d. ) Apr
## [doc1603]                      |King | Idris Alooma of Kane
## [doc1603] nation of James I as |King | of England takes pla
## [doc1604]  appointed as one of |king | 's bodyguards by Ear
## [doc1604]           February – |King | James issues an orde
## [doc1604] n Burmese calendar , |King | Nyaungyan Min of Bur
## [doc1604]  crown or on funding |King | requests .          
## [doc1604]               July – |King | James begins fundrai
## [doc1604]              March – |King | James opens his firs
## [doc1604]           February – |King | James of England den
## [doc1604]  July , coronation , |King | James I and Anne , Q
## [doc1604]                    – |King | John IV of Portugal 
## [doc1605] ungyan Min , Burmese |king | ( b.                
## [doc1605]                      |King | Sigismund , a widow 
## [doc1605]              March – |King | Alexander           
## [doc1605]            October – |King | Constantine I of Kak
## [doc1605] – Naresuan , Siamese |King | of Ayutthaya kingdom
## [doc1605]           December – |King | Sigismund III of Pol
## [doc1605] –1661 ) ( d. ) April |King | Philip IV of Spain (
## [doc1606]               July – |King | Christian IV of Denm
## [doc1606]            October – |King | Charles IX of Sweden
## [doc1607] ra passes jointly to |king | of France , and Bish
## [doc1607]  with of followers , |King | James I of England ,
## [doc1607]  y Girón , Mother of |King | John IV of Portugal 
## [doc1608] – Seonjo of Joseon , |King | of Joseon ( b. ) Mar
## [doc1608] Matthias I , already |King | of Bohemia becomes K
## [doc1609]                April |King | Philip III of Spain 
## [doc1609]                      |King | Philip III of Spain 
## [doc1609] nter ( d . ) March – |King | Frederick III of Den
## [doc1610]                May – |King | Henry IV of France i
## [doc1610] arliament as well as |king | . [ ]               
## [doc1610]  of God ( b. ) May – |King | Henry IV of France ,
## [doc1610]                      |King |
## [doc1611]            October – |King | Charles IX of Sweden
## [doc1612]           February – |King | Gustavus            
## [doc1612]       The - year old |king | almost drowns while 
## [doc1613] , a legendary Gallic |king | who fought Romans ) 
## [doc1613]           February – |King | Anaukpetlun of Burma
## [doc1613]            January – |King | James I of England s
## [doc1614]                      |King | James I of England i
## [doc1614]            Lan Na 's |King |
## [doc1614] rchduke of Austria , |King | of Hungary , Croatia
## [doc1615]           November – |King | Louis XIII of France
## [doc1616] James I of England , |king | 's favorite George V
## [doc1616]                      |King | James 's School at K
## [doc1616]             Although |King | has ordered investig
## [doc1616] by Inquisition , but |king | overturns Edict , an
## [doc1616] ry of State by young |king | Louis XIII .        
## [doc1616] n Coke , in Court of |King | 's Bench ( England )
## [doc1616] by Inquisition , but |king | overturns Edict , an
## [doc1616]                  The |king | asks for a repeat pe
## [doc1616]                      |King | James 's School at K
## [doc1616]            January – |King | James I of England a
## [doc1616]                May – |King | James I of England '
## [doc1617]            [ ] May – |King | James I of England i
## [doc1617] r - old Louis XIII , |king | of France , forces h
## [doc1617]                May – |King | James VI of Scotland
## [doc1617] e – Raja Wodeyar I , |King | of Mysore ( b. )    
## [doc1617] s regent during time |King | of England is away f
## [doc1617]  of state under four |kings| of France ( b. ) Nov
## [doc1617]             August – |King | James of England and
## [doc1619] executes last Jaffna |king | ( Cankili II ) , put
## [doc1619]  Hyojong of Joseon , |king | of Joseon Dynasty of
## [doc1619]                May – |King | Pye Min of Burma ( d
## [doc1620]  de - Cé in France , |King | Louis XIII defeats t
## [doc1620]  reign at Karachi as |king | of Sindh , in what i
## [doc1620]              March – |King | Karma Phuntsok Namgy
## [doc1620] n Emperor and former |King | of Bohemia , sends a
## [doc1620]  de - Cé in France , |King | Louis XIII defeats t
## [doc1621]                  The |king | also grants city rig
## [doc1621]              March – |King | Philip III of Spain 
## [doc1621]              March – |King | Philip IV of Spain b
## [doc1622]           February – |King | James I of England d
## [doc1622]           November – |King | Christian IV of Denm
## [doc1623] ndenov , daughter of |king | Christian IV of Denm
## [doc1623]                Hon , |King | Gwanghae of Joseon (
## [doc1623]              April – |King | Gwanghaegun of Joseo
## [doc1623] ce of Wales , future |King | Charles I of England
## [doc1624]                      |King | Filipe III of Portug
## [doc1624]         August – The |King | 's Men perform Thoma
## [doc1624]                      |King | Christian IV of Denm
## [doc1624]                      |King | Christian IV of Denm
## [doc1624] eungan , son of late |King | Seongjo , to Korean 
## [doc1624]           February – |King | Filipe III of Portug
## [doc1625]              March – |King | James VI of Scotland
## [doc1625]               June – |King | Charles             
## [doc1626]           February – |King | Charles             
## [doc1626]               June – |King | Charles             
## [doc1626]  Gustavus Adolphus , |King | of Sweden , defeats 
## [doc1628]               June – |King | Charles             
## [doc1628]           February – |King | Gustavus            
## [doc1629] ess ( d . ) August – |King | John III Sobieski , 
## [doc1629] datter , daughter of |king | Christian IV of Denm
## [doc1630] aji , Indian warrior |king | , founder of Maratha
## [doc1630] uritan ( d . ) May – |King | Charles II of Englan
## [doc1630] sland of Sri Lanka , |King | Senarat of Kandy lea
## [doc1631]           November – |King | Gustavus            
## [doc1631] Estonia , by Swedish |king | Gustavus II Adolphus
## [doc1632] llion against French |king | Louis XIII is crushe
## [doc1632]                      |King | Wladyslaw IV        
## [doc1632] ans , against French |king | Louis XIII .        
## [doc1632] Sigismund III Vasa , |King | of Sweden ( 1592– ) 
## [doc1632]      Waza is elected |king | of Polish – Lithuani
## [doc1632]  Nuremberg , Swedish |king | Gustavus Adolphus at
## [doc1632]           November – |King | Gustavus Adolphus of
## [doc1632]                      |King | Gustavus            
## [doc1632]              Swedish |king | Gustavus II Adolphus
## [doc1633]  had been elected as |king | on November . Februa
## [doc1633] an ( d . ) October – |King | James II of England 
## [doc1633]          September – |King | Louis XIII of France
## [doc1633] ber – Ferdinand IV , |King | of Romans ( d . )   
## [doc1633] Wladyslaw IV Vasa as |King | of Poland at cathedr
## [doc1634]                May – |King | Charles             
## [doc1635]            January – |King |
## [doc1636]                      |King | Christian IV of Denm
## [doc1636] r and captive during |King | Philip 's War ( d. )
## [doc1637] ter a court battle , |King | Charles I of England
## [doc1637]              April – |King | Charles             
## [doc1637] amaraja Wodeyar VI , |King | of Mysore ( b. )    
## [doc1637] rchduke of Austria , |King | of Hungary , Croatia
## [doc1638]  ( d . ) September – |King | Louis XIV of France 
## [doc1638]  – Raja Wodeyar II , |King | of Mysore ( b. )    
## [doc1639]                      |King | Charles             
## [doc1640] ament assembles , as |King | Charles I of England
## [doc1640] l to be acclaimed as |king | , ending years of pe
## [doc1640] rybut Wisniowiecki , |King | of Poland ( d. ) Jun
## [doc1640] l to be acclaimed as |king | , ending years of pe
## [doc1641] for his own safety , |King | Charles I signs Stra
## [doc1641]                      |King | Charles , in turn , 
## [doc1641] ic Church December – |King | Charles replies to G
## [doc1641]                  [ ] |King | Charles refuses to g
## [doc1641]              March – |King | Charles             
## [doc1641]           February – |King | Charles             
## [doc1641]                      |King | Charles , concerned 
## [doc1642]             August – |King | Charles             
## [doc1643]                May – |King | Louis XIII of France
## [doc1643] es led personally by |king | . [ ]               
## [doc1643] – ) ( d . ) August – |King | Afonso VI of Portuga
## [doc1644] and Chief Justice to |King | Charles I of England
## [doc1646]                May – |King | Charles             
## [doc1646]              April – |King | Charles             
## [doc1646] inter ( d. ) April – |King | Christian V of Denma
## [doc1647]                 IV , |King | of Romans , is crown
## [doc1647]           December – |King | Charles of England p
## [doc1648]                May – |King | Wladyslaw IV        
## [doc1648] ary – Christian IV , |King | of Denmark and Norwa
## [doc1648]           February – |King | Christian IV of Denm
## [doc1648]               Vasa , |King | of Poland and Grand 
## [doc1648] ) December – Gregory |King | , English statistici
## [doc1649] f Joseon , sixteenth |king | of Joseon dynasty in
## [doc1649] que ( b. ) January – |King | Charles             
## [doc1649]            January – |King | Charles             
## [doc1650] t ( d . ) November – |King | William III of Engla
## [doc1651] harles II is crowned |King | of Scots at Scone ( 
## [doc1654] uly – Ferdinand IV , |King | of Romans ( b. )    
## [doc1655]    October – Swedish |King | Karl X Gustav occupi
## [doc1655]           November – |King | Charles XI of Sweden
## [doc1656]  a mental disability |King | Afonso VI 's authori
## [doc1656]                  The |King | swears a vow , Lwów 
## [doc1656] shop ( b. ) November |King | John IV of Portugal 
## [doc1656] hn II Casimir Vasa , |King | of Poland , crowns B
## [doc1656]             August – |King | Sanpet 's uncle , Pr
## [doc1656] 's brother plots new |king | 's overthrow .      
## [doc1656]            October – |King |
## [doc1656]           December – |King | Frederick III of Den
## [doc1656]                      |King | Karl X Gustav signs 
## [doc1657]                      |King | Frederick           
## [doc1657]             [ ] June |King | Frederick III of Den
## [doc1657]               July – |King | Frederick I of Pruss
## [doc1658] hin days , Sweden 's |King | Karl X Gustav leads 
## [doc1658]          By August , |King | 's troops have surro
## [doc1659]  Hyojong of Joseon , |king | of Joseon dynasty of
## [doc1660] – Charles XI becomes |king | of Sweden at age of 
## [doc1660] er ( b. ) February – |King | Charles X Gustav of 
## [doc1660]               June – |King | George I of Great Br
## [doc1660]                May – |King | Charles II lands at 
## [doc1660] Prince James , later |King | James II , had start
## [doc1660]                May – |King | Charles             
## [doc1661] cian ( d. ) August – |King | Sukjong of Joseon ( 
## [doc1661] ne ( d. ) November – |King | Charles II of Spain 
## [doc1661]             Burma 's |King | Pye Min hands Yongli
## [doc1661]                      |King | Charles             
## [doc1662] ty to gain access to |king | , who grants him a n
## [doc1662] , Royal Librarian of |King | Felipe V of Spain ( 
## [doc1662] be executed , as new |King | .                   
## [doc1663]               July – |King | Charles             
## [doc1663]            May – The |King | 's Theatre , now cal
## [doc1663]              William |King | , English poet ( d. 
## [doc1663]              March – |King | Charles             
## [doc1664]              March – |King | Charles             
## [doc1664]            [ ] May – |King | Louis XIV of France 
## [doc1665]          September – |King | Philip IV of Spain (
## [doc1665]               June – |King | Charles             
## [doc1665]               July – |King | Charles             
## [doc1665]  II of Spain becomes |king | while not yet four y
## [doc1665] n envoy of France 's |King | Louis XIV , formally
## [doc1667] – Yohannes I becomes |king | of Ethiopia , follow
## [doc1667]          May – After |King | Philip IV of Spain r
## [doc1668]              March – |King | Charles II of Englan
## [doc1669] ybut Wisniowiecki as |King | of Poland ( and Gran
## [doc1669]                Peter |King | , Baron King ,      
## [doc1669]                      |King | Louis XIV finances p
## [doc1670] lies from Metz , but |king | refuses .           
## [doc1670]  Christian V becomes |king | of Denmark ( which a
## [doc1670]  in Poland , between |King | Michal Wisniowiecki 
## [doc1670]                 Ahom |King | Swargadeo Chakradhwa
## [doc1670]                      |King | Christian V of Denma
## [doc1670]           February – |King | Frederick III of Den
## [doc1670] soldier ( d. ) May – |King | Frederick Augustus I
## [doc1670]               June – |King | Louis XIV of France 
## [doc1671] rother - in - law of |king | Frederick IV of Denm
## [doc1671]         The Court of |King | Charles             
## [doc1671] ian ( d. ) October – |King | Frederick IV of Denm
## [doc1672] ceroy of Peru ( b. ) |King | John II Casimir of P
## [doc1672] e - Altenburg ( b. ) |King | Pye Min of Burma ( b
## [doc1672] ster ( b. ) December |King | John II Casimir of P
## [doc1673]            On June , |king | 's Catholic brother 
## [doc1673] rybut Wisniowiecki , |King | of Poland ( b. ) Nov
## [doc1673]  of soon - to - be - |king | Jan Sobieski , defea
## [doc1673]                      |King | Louis XIV of France 
## [doc1673]           November – |King | Charles             
## [doc1675]               June – |King | Philip 's War breaks
## [doc1675]              April – |King | Charles             
## [doc1675]             August – |King | Charles             
## [doc1676] burgs ( d. ) April – |King | Frederick I of Swede
## [doc1676] 's War , Metacomet ( |King | Philip ) , leader of
## [doc1676]             August – |King | Philip ( Metacomet )
## [doc1677] nislaw Leszczynski , |King | of Poland ( d . ) da
## [doc1678] iracy to assassinate |king | Charles II of Englan
## [doc1679]                  The |King | exercises his royal 
## [doc1679]                      |King | Charles             
## [doc1679] ing a bill excluding |king | 's brother , Catholi
## [doc1680]            January – |King | Amangkurat II of Mat
## [doc1680]                May – |King | Charles XI of Sweden
## [doc1680]  Trunajaya arrives , |King | Amangkurat stabs his
## [doc1681]       [ ] December – |King | Charles             
## [doc1681]                    – |King | Charles             
## [doc1682] pirate ( d. ) June – |King | Charles XII of Swede
## [doc1683]  Polish – Lithuanian |king | Jan III Sobieski , w
## [doc1683] e ( b. ) September – |King | Afonso VI of Portuga
## [doc1683] Sidney , opponent of |King | Charles II of Englan
## [doc1683]  Polish – Lithuanian |king | Jan III Sobieski , w
## [doc1684]            January – |King | Charles II of Englan
## [doc1685]           February – |King | Charles             
## [doc1685] at is now Thailand , |King | Narai of Ayutthaya s
## [doc1685]           December – |King | Charles XI of Sweden
## [doc1686]               July – |King | James II of England 
## [doc1686]            January – |King | Louis XIV of France 
## [doc1686]             August – |King | James VII of Scotlan
## [doc1686] of island of Bali as |king | of paramount state o
## [doc1687]                   As |King | James II of England 
## [doc1687]              April – |King | James II of England 
## [doc1688] isia ( d. ) August – |King | Frederick William I 
## [doc1688]                May – |King | Narai of Ayutthaya n
## [doc1688]            October – |King | James               
## [doc1688]  – Phetracha becomes |king | of Ayutthaya , after
## [doc1688]  Republic and future |King | William III of Unite
## [doc1688]               July – |King | Narai of Thailand ( 
## [doc1688]                May – |King | James II of England 
## [doc1688]                      |King | James II of England 
## [doc1689] ortugal , Portuguese |king | ( d . ) Matthew Skin
## [doc1689]          September – |King | William brings Engla
## [doc1690]  Meidingu Pamheiba , |King | of Manipur ( d. ) Ma
## [doc1690]                      |King | William III of Engla
## [doc1690]           February – |King | William III of Engla
## [doc1690]  Meidingu Pamheiba , |King | of Manipur ( d. ) De
## [doc1690]               June – |King | William III of Engla
## [doc1691] gust – In Scotland , |King | William offers Highl
## [doc1691]            January – |King | William III of Engla
## [doc1691]            January – |King | Louis XIV of France 
## [doc1692]         The Second , |King | Of England ; With Th
## [doc1692]                  The |King | of Spain donates lan
## [doc1692]  Madockawando during |King | William 's War , bet
## [doc1693] – Francesco Invrea , |King | of Corsica , begins 
## [doc1693]          September – |King | Louis XIV of France 
## [doc1693] ted on orders of new |king | , Álvaro X .        
## [doc1693]                      |King | Christian V accepts 
## [doc1693]           November – |King | Charles             
## [doc1694]  Yeongjo of Joseon , |King | of Joseon Dynasty in
## [doc1694] rca do Macaco , last |King | of Dos Palmares , Zu
## [doc1695]                      |King | William III of Engla
## [doc1696] stus III of Poland , |King | of Poland , Elector 
## [doc1696] bliographer , Norroy |king | - at - arms ( d . ) 
## [doc1696]  John III Sobieski , |King | of Poland and Grand 
## [doc1696]             August – |King | Louis XIV of France 
## [doc1696]                  The |King | 's guard is alerted 
## [doc1696]              March – |King | William III of Engla
## [doc1696]                 Ahom |King | Supaatphaa or Gadadh
## [doc1696] bliographer , Norroy |king | - at - arms ( d . ) 
## [doc1696]  John III Sobieski , |King | of Poland and Grand 
## [doc1697] ish Meteor , becomes |king | of Sweden at age on 
## [doc1697] orate burial of late |King | Charles XI of Sweden
## [doc1698] vember – The Spanish |king | Carlos names his gra
## [doc1698] y – Minye Kyawhtin , |king | of Toungoo dynasty o
## [doc1698]           December – |King | William III of Engla
## [doc1699] stian V of Denmark , |King | of Denmark and Norwa
## [doc1699] er ( d. ) November – |King | Christian VI of Denm
## [doc1699] gust – Christian V , |King | of Denmark – Norway 
## [doc1700] es II , last Spanish |king | of House of Habsburg
## [doc1700] harles II of Spain , |King | of Spain ; last Habs
## [doc1700]  day , Augustus II , |King | of Poland , and Pete
## [doc1701]     Under it terms , |King | William III , childl
## [doc1701]           November – |King | Philip V of Spain ma
## [doc1701] ames II of England , |King | of England and Irela
## [doc1702]                      |King | Charles XII of Swede
## [doc1702]                      |King | William III of Engla
## [doc1702]                      |King | William III of Engla
## [doc1702] t , daughter of late |King | James II and younger
## [doc1703]          Phetracha , |king | of Ayutthaya ( b. ) 
## [doc1703]  unknown Phetracha , |king | of Ayutthaya ( b. ) 
## [doc1704]                      |King | Charles XII of Swede
## [doc1705] and Queen Consort of |King | Gyeongjong of Joseon
## [doc1706]             August – |King | Louis XIV of France 
## [doc1706]               June – |King | Frederik            
## [doc1706] or ( b. ) December – |King | Peter II of Portugal
## [doc1707]  area as new Kandyan |king | , succeeding to upon
## [doc1707] ader ( d. ) August – |King | Louis I of Spain ( d
## [doc1709] nh Cuong becomes new |king | of northern Vietnam 
## [doc1710]  – Adolf Frederick , |King | of Sweden ( d. ) May
## [doc1711]               June – |King | Louis XIV becomes lo
## [doc1712]            October – |King | Philip V of Spain es
## [doc1712] ry Frederick Great , |King | of Prussia ( 1740–17
## [doc1712]       July – William |King | , English poet ( b. 
## [doc1713]                May – |King | Philip V of Spain is
## [doc1713] er ( b. ) February – |King | Frederick I of Pruss
## [doc1713]  of Savoy is crowned |King | of Sicily at Palermo
## [doc1713] itain and Austria as |king | of Spain ; Spain ced
## [doc1713] dinand VI of Spain , |king | of Spain , lived ( d
## [doc1714]           November – |King | Philip V of Spain is
## [doc1714] last Toungoo Dynasty |king | of Burma ( Myanmar )
## [doc1714] ber – George I , new |King | of Great Britain and
## [doc1714] ember – Alaungpaya , |King | of Burma ( d .      
## [doc1714] ram Ray , autonomous |king | , vassal of Mughal E
## [doc1715]          September – |King | Louis XIV of France 
## [doc1715] mes , son of deposed |King | James VII , arrives 
## [doc1715]                      |King | Louis XIV of France 
## [doc1715]               June – |King | Philip , ruler of Ki
## [doc1715]                      |King | Louis XIV of France 
## [doc1716]              March – |King | Charles XII of Swede
## [doc1716] man architect ( d. ) |King | Charles III of Spain
## [doc1716]  Sir John Dashwood - |King | , Baronet , English 
## [doc1716] ntist ( d. ) January |King | Charles III of Spain
## [doc1717]                 John |King | , pirate ( b. c. 170
## [doc1717]                      |King | George I of Great Br
## [doc1717]            October – |King | Philip V of Spain or
## [doc1717]          September – |King | George I of Great Br
## [doc1718]                      |King | Charles XII of Swede
## [doc1719]              April – |King | Philip V of Spain de
## [doc1719] e of Joseon , son of |king | Yeongjo of Joseon ( 
## [doc1720] ects Frederick I new |King | of Sweden .         
## [doc1720] erick I take over as |king | of Sweden .         
## [doc1720]               July – |King | Sukjong of Joseon ( 
## [doc1723] anist ( d. ) March – |King | Frederick V of Denma
## [doc1723]           February – |King | Louis XV of France a
## [doc1724]            January – |King | Philip V of Spain ab
## [doc1724] inister for Spain 's |King | Philip V until latte
## [doc1724] oser ( b. ) August – |King | Louis I of Spain ( b
## [doc1725]                  The |King | is not present , and
## [doc1725]        July – Thomas |King | , English and Britis
## [doc1726]                  The |King | selects his former t
## [doc1726]        March – After |King | Haffon of West Afric
## [doc1726] r Prime Minister for |King | Louis XV of France ,
## [doc1727]           Prussia 's |King | Frederick William   
## [doc1727]                      |King | George              
## [doc1727]    Jesse of Kartli , |King | of Georgia ( b. or )
## [doc1727]                      |King | George I of Great Br
## [doc1727]    Jesse of Kartli , |King | of Georgia ( b. or )
## [doc1729]           February – |King | Philip V of Spain is
## [doc1730] ber – Frederick IV , |King | of Denmark and Norwa
## [doc1730] rederick 's father , |King | Frederick William , 
## [doc1731] r. Richard Bentley , |King | 's librarian and Hou
## [doc1731]             August – |King | Frederick William I 
## [doc1732]              April – |King | Christian VI of Denm
## [doc1732] t Poniatowski , last |King | of Poland and Grand 
## [doc1732]           May – John |King | , English churchman 
## [doc1733]           February – |King | Augustus II Strong o
## [doc1733] ynski , who had been |King | of Poland from to un
## [doc1734] . ) April – Taksin , |King | of Thailand ( d. ) A
## [doc1734] les of Spain ( later |King | Charles III ) become
## [doc1734] aungdawgyi , Burmese |king | ( d . ) August – Ben
## [doc1735]                  The |King | 's Highway ( Charles
## [doc1736]                May – |King | George              
## [doc1736]           November – |King |
## [doc1737] htang VI of Kartli , |king | of Kingdom of Kartli
## [doc1738]                  [ ] |King | Philip V issues orde
## [doc1738]               June – |King | George III of United
## [doc1740]                    – |King | Edward of Miskito In
## [doc1740] rederick William I , |King | in Prussia ( b. )   
## [doc1741]                May – |King | George              
## [doc1742] Khan Qajar , Iranian |king | ( d. ) March – Alett
## [doc1743] ber – Jai Singh II , |King | of Amber - Juiper , 
## [doc1743]     Adolphus becomes |king | on death of King Fre
## [doc1743]                      |King | Augustus III of Pola
## [doc1743] roops , last British |king | to do so .          
## [doc1743] d until his father , |King | James II , was depos
## [doc1744]  ( d . ) September – |King | Frederick William II
## [doc1745]           November – |King | George 's War :     
## [doc1745]               June – |King | George 's War :     
## [doc1745] rch – Augustus III , |King | of Poland and Electo
## [doc1746] ust – Christian VI , |King | of Denmark and Norwa
## [doc1746]               July – |King | Philip V of Spain ( 
## [doc1746]               July – |King | Philip V of Spain di
## [doc1746]                      |King | Gustav III of Sweden
## [doc1747]            October – |King | George II transfers 
## [doc1747]           February – |King | George 's War :     
## [doc1748] ( d. ) [ ] October – |King | Charles XIII of Swed
## [doc1748]  Timur Shah , Afghan |king | ( d. ) Thomas Hollow
## [doc1748]  Timur Shah , Afghan |king | ( d. ) Thomas Hollow
## [doc1749] an ( d . ) January – |King | Christian VII of Den
## [doc1750]               July – |King | John V of Portugal (
## [doc1750]                  The |King | of Dahomey has incom
## [doc1750]                      |King | José Manuel appoints
## [doc1751] manuel IV of Savoy , |King | of Sardinia ( d . ) 
## [doc1751]              March – |King | Frederick I of Swede
## [doc1751] nce in , becomes new |King | .                   
## [doc1751]    April – Sweden 's |King | Frederick I dies at 
## [doc1753]            January – |King | Binnya              
## [doc1753]  November – Spain 's |King | Fernando VI issues a
## [doc1753]                      |King | George              
## [doc1754]                      |King | George II , for whom
## [doc1754] maraza Dipadi , last |king | of Toungoo dynasty o
## [doc1754]  – Karim Khan Zand , |King | of Persia ( now Iran
## [doc1754] maraza Dipadi , last |king | of Toungoo dynasty o
## [doc1754] XVI of France , last |king | of France before Rev
## [doc1755]            At time , |King | George II of Great B
## [doc1755]           November – |King | Ferdinand VI of Spai
## [doc1755] ( d. ) March – Rufus |King | , American lawyer , 
## [doc1756]  ] May – Singu Min , |king | of Myanmar ( k . ) M
## [doc1756]  Chinnamalai , Tamil |king | ( d . ) August – Pie
## [doc1757] c unrest in France , |King | 's Council issues a 
## [doc1757] Battle of Khresili : |King | Solomon I of Imereti
## [doc1757]           February – |King | Louis XV of France d
## [doc1757]       [ ] February – |King | Frederick V of Denma
## [doc1757] c unrest in France , |King | 's Council issues a 
## [doc1757]  considered Prussian |king | 's greatest tactical
## [doc1757]            At time , |King | George II of Great B
## [doc1757]           November – |King | Abdallah IV of Moroc
## [doc1757] iot 's suppression , |King | Joao 's minister , M
## [doc1758]  d. ) Kamehameha I , |King | of Hawaii ( d. c. ) 
## [doc1758] ( d. ) Philip Gidley |King | , British Royal     
## [doc1758] ( d. ) Philip Gidley |King | , British Royal     
## [doc1759] ltese painter ( b. ) |King |
## [doc1759] oser ( b. ) August – |King | Ferdinand VI of Spai
## [doc1759] ltese painter ( b. ) |King |
## [doc1760] omposer ( b. ) May – |King | Alaungpaya of Burma 
## [doc1760] gne ( b. ) October – |King | George II of Great B
## [doc1761]          September – |King | George III and Queen
## [doc1762] States ( d. ) August |King | George IV of United 
## [doc1762] man physician ( d. ) |King | George IV of United 
## [doc1762]             August : |King | Prithvi Narayan Shah
## [doc1763]  Marshal of France , |King | Charles XIV         
## [doc1763]  Elector of Saxony , |King | of Poland and Grand 
## [doc1763] aungdawgyi , Burmese |king | ( b. )              
## [doc1764]           [ ] July – |King | George , on advise o
## [doc1764]                  The |King | - in-Council doth he
## [doc1765] eece ( d. ) August – |King | William IV of United
## [doc1765] amity with Chinese , |King | George III of Great 
## [doc1765]  – Frederick Great , |King | of Prussia , issues 
## [doc1766]            January – |King | Frederick V of Denma
## [doc1766] nislaw Leszczynski , |King | of Poland ( b. ) [ ]
## [doc1766]          [ ] April – |King | Carlos              
## [doc1767]           February – |King | Carlos              
## [doc1767]                      |King | Ekkathat is found de
## [doc1767] t , French marshal , |King | of Naples ( d.      
## [doc1767] ohn VI of Portugal , |King | of Portugal ( d. ) M
## [doc1767]               At new |King | 's College medical s
## [doc1768]                  The |king | 's refusal to sign s
## [doc1768]              March – |King | Louis XV of France d
## [doc1768]           December – |King | Prithvi Narayan     
## [doc1768]             Spain 's |King | Carlos              
## [doc1768] – Joseph Bonaparte , |King | of Naples and Spain 
## [doc1769]                      |King | Suremphaa of Assam B
## [doc1770]              March – |King | Prithvi Narayan     
## [doc1770]           December – |King | Louis XV of France i
## [doc1770] airs ( d. ) August – |King | Frederick William II
## [doc1770]             Georgian |king |
## [doc1770] from his position by |king | . [ ] Joseph Priestl
## [doc1771]  – Ernest Augustus , |King | of Hanover ( d. )   
## [doc1771]  – Adolf Frederick , |King | of Sweden ( b. )    
## [doc1772] ntor ( d. ) August – |King | William I of Netherl
## [doc1773]           February – |King | Charles Emmanuel III
## [doc1773] – Louis Philippe I , |King | of French ( d. ) Nov
## [doc1774]                  May |King | Louis XV of France (
## [doc1774] talist ( d. ) Edward |King | , Royal Navy officer
## [doc1774]          Sir Richard |King | , Baronet , Royal Na
## [doc1774]                      |King | Louis XV of France (
## [doc1774]          Sir Richard |King | , Baronet , Royal Na
## [doc1774] talist ( d. ) Edward |King | , Royal             
## [doc1774] amaraja Wodeyar IX , |King | of Mysore ( d . ) Th
## [doc1775]  d. ) April – Samuel |King | , American Presbyter
## [doc1776] ndependence summer , |King | George III acknowled
## [doc1777]  Pratap Singh Shah , |king | of Nepal ( b. )     
## [doc1777]           February – |King | Joseph I of Portugal
## [doc1777] ederic is crowned as |king | of Miskito Kingdom .
## [doc1777]           February – |King | Joseph I of Portugal
## [doc1778] on ( 1814–30 ) under |King | Charles X ( d. )    
## [doc1778]              April – |King | George III appoints 
## [doc1778] rench army general , |King | of Holland ( d. ) [ 
## [doc1778] IV Adolf of Sweden , |King | of Sweden ( d. ) Jam
## [doc1778] IV Adolf of Sweden , |King | of Sweden ( d. ) Nov
## [doc1779]               June – |King | Charles             
## [doc1782] Min is overthrown as |king | of Myanmar by his co
## [doc1784]                      |King | Carlos              
## [doc1786] ser ( d. ) September |King | Christian VIII of De
## [doc1786] tect ( b. ) August – |King | Frederick II of Prus
## [doc1786] ria ( d . ) August – |King | Ludwig I of Bavaria 
## [doc1786] an physician ( d . ) |King | Christian VIII of De
## [doc1787]         Shaka , Zulu |king | ( d. ) January – Art
## [doc1788]                      |King | George III of United
## [doc1788]                      |King | Charles III of Spain
## [doc1788]             August – |King | Louis XVI of France 
## [doc1788] rman composer ( b. ) |King | Charles III of Spain
## [doc1788]           December – |King | Charles III of Spain
## [doc1789]       [ ] February – |King | Gustav III of Sweden
## [doc1790] I , Kingdom November |King | And Priest ( b. )   
## [doc1792]                      |King | Gustav III of Sweden
## [doc1792] gogue ( b. ) March – |King | Gustav III of Sweden
## [doc1793]            January – |King | Louis XVI of France 
## [doc1793] public and hatred of |kings| .                   
## [doc1794]            January – |King | George III of Great 
## [doc1795]               June – |King | Louis XVII of France
## [doc1795] ian ( d. ) October – |King | Frederick William IV
## [doc1795]  ( he becomes actual |king | on April , ) .      
## [doc1796]           November – |King | Ang Eng of Cambodia 
## [doc1796]     Two days later , |King | Victor Amadeus III o
## [doc1797] . ) George Tupou I , |King | of Tonga ( d. ) Thom
## [doc1797] Khan Qajar , Iranian |king | ( b. )              
## [doc1797] ty ( b. ) November – |King | Frederick William II
## [doc1797] Khan Qajar , Iranian |king | ( b. )              
## [doc1798]            October – |King | Charles Albert of Sa
## [doc1799]               July – |King | Oscar I of Sweden an
## [doc1800]                      |King | Jeongjo of Joseon , 
## [doc1800]             August – |King | George III gives roy
## [doc1803] een ruled by British |king | ) .                 
## [doc1803] dara Vanniyan , last |King | of Vanni ( defeated 
## [doc1804]  Mongkut , Rama IV , |King | of Siam ( d . )     
## [doc1805]       [ ] February – |King |
## [doc1805]  Chinnamalai , Tamil |king | ( b. ) August – Chri
## [doc1807]  , Prime Minister of |King | Louis XVI of France 
## [doc1808] Frederick VI becomes |king | of Denmark .        
## [doc1808]            October – |King | Frederick VII of Den
## [doc1808]              March – |King | Christian VII of Den
## [doc1809] ulaloke ( Rama I ) , |King | of Siam , founder of
## [doc1809]                      |King | Gustav IV Adolf of S
## [doc1809]                      |King | Gustav IV Adolf of S
## [doc1809] ulaloke ( Rama I ) , |King | of Siam , founder of
## [doc1809] s ( uncle of deposed |king | Gustav IV Adolf ) is
## [doc1810]                      |King | George III of United
## [doc1811]                      |King | Maximilian II of Bav
## [doc1814]           November – |King | Charles XIII of Swed
## [doc1814] h – Kamehameha III , |King | of Hawaiian Islands 
## [doc1815] ch – Joachim Murat , |King | of Naples , declares
## [doc1815] inha of Kandy , last |king | in Ceylon , is depos
## [doc1815] t , French marshal , |King | of Naples ( executed
## [doc1815] had declared himself |king | on June , at death o
## [doc1815] him Murat , defeated |King | of Naples , is force
## [doc1816] axe - Coburg ( later |King | of Belgians ) marrie
## [doc1817]               June – |King | Ferdinand VII of Spa
## [doc1818]     Upon his death , |King | Charles XIII of Swed
## [doc1818]  – Norway is crowned |king | of Sweden .         
## [doc1818]  XIII / Charles II , |King | of Sweden and Norway
## [doc1818]  – Norway is crowned |king | of Sweden .         
## [doc1818]  – Norway is crowned |king | of Norway , in Trond
## [doc1818] eorge III and future |King | William IV of United
## [doc1819] ist ( b. ) January – |King | Charles IV of Spain 
## [doc1819] May – Kamehameha I , |King | of Hawaii ( b. )    
## [doc1819] manuel IV of Savoy , |King | of Sardinia ( b. )  
## [doc1820]              April – |King | William I of Württem
## [doc1820]                      |King | George III of United
## [doc1820]              March – |King | Ferdinand VII of Spa
## [doc1821]                      |King | Badi                
## [doc1821]           December – |King | Pomare II of Tahiti 
## [doc1821] George IV is crowned |king | of United Kingdom of
## [doc1821]  of Clarence ( later |King | William IV ) ( b. ) 
## [doc1822]         The Visit of |King | George IV to Scotlan
## [doc1824] n ( b. ) September – |King | Louis XVIII of Franc
## [doc1824] ly – Kamehameha II , |King | of Hawaii ( b. )    
## [doc1824]               July – |King | Kamehameha          
## [doc1824] bhalai ( Rama II ) , |King | of Siam ( Thailand )
## [doc1825] ist ( b. ) October – |King | Maximilian I Joseph 
## [doc1825]            January – |King | Ferdinand I of Two S
## [doc1825]       [ ] November – |King | Joao                
## [doc1826]              March – |King | John VI of Portugal 
## [doc1826] wayo kaMpande , Zulu |king | ( d . ) January Mari
## [doc1826]                      |King | João 's son , Empero
## [doc1826] painter ( d. ) May – |King | Charles XV of Sweden
## [doc1827] soldier ( b. ) Rufus |King | , American lawyer , 
## [doc1828]                      |King | Miguel              
## [doc1828] of Brazil and former |King | of Portugal , signs 
## [doc1829] rmy ( d. ) January – |King | Oscar II of Sweden a
## [doc1829]             August – |King | 's College London is
## [doc1830]                      |King | George IV of United 
## [doc1831]       Albert becomes |king | of Sardinia after de
## [doc1831]       Albert becomes |king | of Sardinia after de
## [doc1831]  Felix of Sardinia , |King | of Sardinia ( b. ) A
## [doc1832]  ) August – George , |King | of Saxony ( d . ) Au
## [doc1832]        Othon , first |King | of Greece , after He
## [doc1833]             August – |King | William 's College o
## [doc1833]          September – |King | Ferdinand VII of Spa
## [doc1834] ath Ali Shah Qajar , |King | of Iran ( b. ) Octob
## [doc1834]                      |King | William IV temporari
## [doc1835] ogist ( d. ) April – |King | Leopold II of Belgiu
## [doc1836]           November – |King | Charles X of France 
## [doc1837]               June – |King | William IV of United
## [doc1837]          September – |King | Pedro V of Portugal 
## [doc1838] ser ( d. ) October – |King | Luís I of Portugal (
## [doc1839] ber – Frederick VI , |King | of Denmark , ex-King
## [doc1840]              April – |King | 's College Hospital 
## [doc1840]               June – |King | Frederick William II
## [doc1841] ce ( d. ) November – |King | Edward VII of United
## [doc1841] zil ( d. ) October – |King | Nicholas            
## [doc1843] tician ( d. ) June – |King | Frederick VIII of De
## [doc1843] er ( b. ) December – |King | William I of Netherl
## [doc1844] ther of Napoleon I , |King | of Naples and Spain 
## [doc1844]                    - |King | Umberto I of Italy (
## [doc1844]                      |King | Oscar I ascends to o
## [doc1844]              March – |King | Charles XIV         
## [doc1844]                      |King | Oscar I ascends to o
## [doc1845] al ( b. ) November – |King | Aleamotu<U+02BB>a of Tonga 
## [doc1845] orer ( d. ) August – |King | Ludwig              
## [doc1846] – Bagyidaw , Burmese |king | ( b. ) November Alex
## [doc1848] y – Christian VIII , |King | of Denmark ( b. )   
## [doc1848] mperor and Hungarian |king | Ferdinand I of Austr
## [doc1848] an ( d. ) February – |King | William II of Württe
## [doc1848] eror , and Hungarian |king | Ferdinand I of Austr
## [doc1848]        The Hungarian |king | and Habsburg emperor
## [doc1848] – Louis Philippe I , |King | of French , abdicate
## [doc1849]              March – |King | Willem II of Netherl
## [doc1849]  end in failure , as |King | Frederick William IV
## [doc1849]  end in failure , as |King | Frederick William IV
## [doc1849]               July – |King | Charles Albert of Sa
## [doc1850] poet ( b. ) August – |King | Louis Philippe      
## [doc1851] Rama IV ) is crowned |King | of Siam , at Grand P
## [doc1851] gklao ( Rama III ) , |King | of Siam ( Thailand )
## [doc1851] Rama IV ) is crowned |King | of Siam , at Grand P
## [doc1852] September – Gojong , |king | of Korean Joseon dyn
## [doc1853] ) April – William R. |King | ,                   
## [doc1854] r – Kamehameha III , |King | of Hawaii ( b. c. ) 
## [doc1855]            January – |King | C. Gillette , Americ
## [doc1856] ry constitution , as |King | - Grand Duke William
## [doc1858] uist ( d. ) [ ] June |King | Gustaf V of Sweden (
## [doc1858]                      |King | Gustaf V of Sweden (
## [doc1859]                 July |King | Oscar I of Sweden an
## [doc1861] on ( b. ) November – |King | Pedro V of Portugal 
## [doc1861] n ( d . ) February – |King | Ferdinand I of Bulga
## [doc1861] ardinia becoming its |king | .                   
## [doc1861] d. ) Abba Jifar II , |king | of Gibe Kingdom of J
## [doc1862]               Jessie |King | ,                   
## [doc1863]  b. ) [ ] November – |King | Frederick VII of Den
## [doc1863]           November – |King | Christian IX of Denm
## [doc1863] an , Emir of Kabul , |King | of Kandahar ( b. )  
## [doc1864]              March – |King | Maximilian II of Bav
## [doc1865]           December – |King | Leopold I of Belgium
## [doc1866]           November – |King | Miguel              
## [doc1867]               July – |King | Otto of Greece ( b. 
## [doc1868]  – Mzilikazi , first |king | of Mthwakazi ( b. c.
## [doc1868] ongkut ( Rama IV ) , |King | of Siam ( Thailand )
## [doc1868]           February – |King | Ludwig I of Bavaria 
## [doc1869] ictor Emmanuel III , |King | of Italy ( d. ) Nove
## [doc1870]  ( d . ) September – |King | Christian X of Denma
## [doc1870]  Amadeo de Saboya as |King | Amadeo I of Spain . 
## [doc1871]                  The |King | of Prussia is declar
## [doc1872] ember – Charles XV , |King | of Sweden and Norway
## [doc1872] nce ( d . ) August – |King | Haakon VII of Norway
## [doc1873] Kingdom and Ghana 's |King | Kofi KariKari , who 
## [doc1874]  actor ( d. ) June – |King | George Tupou II of T
## [doc1874] lliam Lyon Mackenzie |King | , Prime Minister of 
## [doc1875]                      |King | Albert I of Belgium 
## [doc1876]          September – |King | Leopold II of Belgiu
## [doc1878]                  The |King | survives with a slig
## [doc1878] ( b. ) [ ] January – |King | Victor Emmanuel II o
## [doc1878] vember Ernest Joseph |King | , Commander in Chief
## [doc1880]  March – Pagan Min , |King | of Ava ( b. )       
## [doc1880] jiravudh , Rama VI , |King | of Siam ( d . ) Janu
## [doc1882] rish academic ( d. ) |King | Gustaf VI Adolf of S
## [doc1882]                 Zulu |king | Cetshwayo kaMpande r
## [doc1883]                      |King | William 's College i
## [doc1884] wayo kaMpande , Zulu |king | ( b. )              
## [doc1884] intervenes to rescue |king | and help suppress re
## [doc1885] ( 1946-1957 ) ( d. ) |King | Oliver , American ja
## [doc1885]               July – |King | Sisavang            
## [doc1885]             November |King |
## [doc1885]                      |King |
## [doc1885]           February – |King | Leopold II of Belgiu
## [doc1886] osopher ( d. ) May – |King | Alfonso XIII of Spai
## [doc1886]                      |King | Ludwig II of Bavaria
## [doc1886] eptember – Hannah T. |King | , British - born Ame
## [doc1886]                      |King | Ludwig II of Bavaria
## [doc1886]               June – |King | Ludwig              
## [doc1887]               July – |King | Kalakaua of Hawai 'i
## [doc1888]  ( d. ) June – Cecil |King | , New Zealand rugby 
## [doc1888] I , German Emperor , |King | of Prussia ( b. )   
## [doc1888] I , German Emperor , |King | of Prussia ( b. )   
## [doc1889] ent ( b. ) October – |King | Luís I of Portugal (
## [doc1889] a ( d . ) November – |King | Manuel II of Portuga
## [doc1889] . ) December Glele , |King | of Dahomey ( suicide
## [doc1889]              Glele , |King | of Dahomey ( suicide
## [doc1890]            January – |King | Amadeo I of Spain ( 
## [doc1890]           November – |King | William III of Nethe
## [doc1890] eorge II of Greece , |King | of Greece ( d. ) Jul
## [doc1891]  – Ahmad bin Yahya , |King | of Yemen ( d. )     
## [doc1893]                      |King | George Tupou I of To
## [doc1893] ess ( d. ) October – |King | Carol II of Romania 
## [doc1893] ary of Teck : future |King | George V of United K
## [doc1893]                      |King | George Tupou I of To
## [doc1893] adhipok , Rama VII , |King | of Siam ( d. ) Novem
## [doc1894] sh aristocrat ( d. ) |King | Boris III of Bulgari
## [doc1894]                      |King | Hassan I of Morocco 
## [doc1894]                 June |King | Edward VIII of Unite
## [doc1895] , French poet ( d. ) |King | George VI of United 
## [doc1895] of Argentina ( d . ) |King | Zog of Albania ( d .
## [doc1895]  of Argentina ( d. ) |King | Zog of Albania ( d .
## [doc1896] r , Shah of Persia , |King | of Herat ( b. )     
## [doc1897] Gaki Sherocho , last |king | of Kaffa , bringing 
## [doc1898] muddin of Selangor , |King | of Malaysia ( d .   
## [doc1898] muddin of Selangor , |King | of Malaysia ( d . ) 
## [doc1899]  Iosefo as island 's |king | , USS Philadelphia t
## [doc1899]               July – |King | Sobhuza             
## [doc1899]  Iosefo as island 's |king | , USS Philadelphia t
## [doc1899]  April – In Uganda , |King | Chwa II Kabalega of 
## [doc1899]          After Benin |King |
## [doc1899] etoa Tanumafili I as |King | of Samoa takes place
## [doc1899] siast ( d. ) March – |King | Frederick IX of Denm
## [doc1899]          In Uganda , |King | Chwa II Kabalega of 
## [doc1900]               July – |King | Umberto I of Italy (
## [doc1900]               July – |King | Umberto I of Italy i
## [doc1900] jagopala Tondaiman , |King | of Pudukkottai ( d. 
## [doc1901] ust – Sho Tai , last |king | of Ryukyu Kingdom in
## [doc1901]  Spanish poet ( b. ) |King | Milan               
## [doc1901]  ( b. ) [ ] February |King | Milan               
## [doc1902]                      |King | Leopold II of Belgiu
## [doc1902] and director ( d . ) |King | Saud of Saudi Arabia
## [doc1902]               June – |King | Albert of Saxony , m
## [doc1902]             November |King | Leopold II of Belgiu
## [doc1902] ke of Cádiz , former |king | consort of Spain ( b
## [doc1902] ion of Edward VII as |King | of United Kingdom an
## [doc1903] nited Kingdom ( d. ) |King | Olav V of Norway ( d
## [doc1903]        Alexander I , |King | of Serbia ( b. ) Nik
## [doc1903]                      |King | Alexander Obrenovic 
## [doc1903] nited Kingdom ( d. ) |King | Olav V of Norway ( d
## [doc1903]   June Alexander I , |King | of Serbia ( b. ) Nik
## [doc1904]     Alberta Williams |King | ,                   
## [doc1904] ife of Martin Luther |King | Sr. , and mother of 
## [doc1904]  of Italy , and last |King | of Italy ( died ) Se
## [doc1904] ife of Martin Luther |King | Sr. , and mother of 
## [doc1905] ke of Skåne , future |King | Gustaf VI Adolf .   
## [doc1905]             August – |King | Oscar II of Sweden a
## [doc1906]            January – |King | Christian IX of Denm
## [doc1907]               Shah , |King | of Malaysia ( d. ) J
## [doc1907] is son Gustaf V , as |king | of Sweden .         
## [doc1907] na ( b. ) December – |King | Oscar II of Sweden (
## [doc1907]  first Druk Gyalpo ( |king | of Bhutan ) .       
## [doc1907]               Shah , |King | of Malaysia ( d.    
## [doc1908]                      |King | Carlos              
## [doc1908]           November – |King | Leopold II of Belgiu
## [doc1908]                      |King | Carlos              
## [doc1909] er ( b. ) December – |King | Leopold II of Belgiu
## [doc1909]           December – |King | Albert I of Belgium 
## [doc1909] r ( d . ) February – |King | Talal of Jordan ( d.
## [doc1910] Rama VI ) is crowned |King | of Siam , after deat
## [doc1910]            October – |King | Chulalongkorn ( Rama
## [doc1910] Rama VI ) is crowned |King | of Siam , after deat
## [doc1910]                May – |King | Edward VII of United
## [doc1912] Emperor of Austria , |King | of Hungary in exile 
## [doc1913]           November – |King |
## [doc1913]              March – |King | George I of Greece i
## [doc1913]              March – |King | George I of Greece (
## [doc1914]            In London |King | declares war on Germ
## [doc1914] ohammed Zahir Shah , |King | of Afghanistan ( d. 
## [doc1914]                  The |King | 's Own Scottish Bord
## [doc1914]            In London |King | declares war on Germ
## [doc1914] ter ( b. ) October – |King | Carol I of Romania (
## [doc1916]  boxer ( d. ) Warren |King | , American cartoonis
## [doc1916]         Thibaw Min , |King | of Burma ( b. )     
## [doc1916]       March – Thomas |King | , New Zealander astr
## [doc1916]         Thibaw Min , |King | of Burma ( b. )     
## [doc1917]               July – |King | George V of United K
## [doc1917]               June – |King | Constantine I of Gre
## [doc1917]  Petra of Kelantan , |King | of Malaysia ( d. ) D
## [doc1918]                      |King | Ferdinand I of Bulga
## [doc1918]                 July |King | Taufa<U+02BB>ahau Tupou IV 
## [doc1918]           November – |King | Ludwig of Bavaria fl
## [doc1918]                      |King | Ferdinand I of Bulga
## [doc1919]                  Nat |King | Cole , African- Amer
## [doc1920] Faisal I of Syria as |king | . [ ]               
## [doc1920] ch politician ( d. ) |King | Mahendra of Nepal ( 
## [doc1920]  Faisal I of Iraq as |king | .                   
## [doc1920] er of Greece , Greek |king | ( b. ) [ ]          
## [doc1920]  February Farouk I , |King | of Egypt ( d . ) Geo
## [doc1921] t between George V , |King | of Canada , and vari
## [doc1921]            October – |King | William II of Württe
## [doc1921]  Peter I of Serbia , |King | of Yugoslavia ( b. )
## [doc1921] ano ( d. ) October – |King | Michael I of Romania
## [doc1921]             August – |King | Faisal I of Iraq is 
## [doc1921] II of Bavaria , last |king | of Bavaria ( b. ) [ 
## [doc1921]  Montenegro , exiled |king | ( b. ) [ ]          
## [doc1922] t between George V , |King | of Canada , and vari
## [doc1922] uanku Abdul Rahman , |King | of Malaysia ( d. )  
## [doc1922] uanku Abdul Rahman , |King | of Malaysia ( d. )  
## [doc1922] ) Norodom Sihanouk , |King | of Cambodia ( d. ) B
## [doc1923] antine I , abdicated |king | of Greece ( b. )    
## [doc1923] torian ( d. ) Wright |King | , American actor ( d
## [doc1923] tholic bishop ( d. ) |King | Peter II of Yugoslav
## [doc1923]  ( later George VI , |King | of United Kingdom ) 
## [doc1923]               Claude |King | , American country m
## [doc1924] singer ( d. ) August |King | Abdullah of Saudi Ar
## [doc1925]      Feast of Christ |King | , is promulgated . [
## [doc1925]           November – |King | Vajiravudh ( Rama VI
## [doc1925] Bolivia ( d. ) James |King | , American tenor ( d
## [doc1925] reland ) ( d. ) B.B. |King | , American singer - 
## [doc1925] Bolivia ( d. ) James |King | , American tenor ( d
## [doc1926]  – Ugyen Wangchuck , |King | of Bhutan ( b. )    
## [doc1926] Muhammad al - Badr , |King | of Yemen ( d. ) Febr
## [doc1927] Bhumibol Adulyadej , |King | Rama IX of Thailand 
## [doc1927]        Coretta Scott |King | , African-American c
## [doc1927]  April Coretta Scott |King | , African-American c
## [doc1927]               July – |King | Ferdinand I of Roman
## [doc1927] eral ( b. ) August – |King | Sisowath of Cambodia
## [doc1927] Bhumibol Adulyadej , |King | Rama IX of Thailand 
## [doc1928]  Selassie is crowned |king | ( not yet emperor ) 
## [doc1928] ish Queen Consort of |King | Baudouin of Belgium 
## [doc1928] zlan Shah of Perak , |King | of Malaysia ( d. ) A
## [doc1929] mathematician ( d. ) |King | Hassan II of Morocco
## [doc1929] nuary Dictatorship : |King | Alexander of Serbs ,
## [doc1929] nuary Dictatorship : |King | Alexander of Serbs ,
## [doc1930]            September |King | Baudouin            
## [doc1930] h ( d. ) [ ] Morgana |King | , American jazz sing
## [doc1930]                      |King | Baudouin            
## [doc1930]         June Morgana |King | , American jazz sing
## [doc1931] ( d . ) August – Don |King | , American boxing pr
## [doc1932]               July – |King | C. Gillette , Americ
## [doc1932]               July – |King | Manuel II of Portuga
## [doc1932]  Augustus III , last |King | of Saxony ( b . )   
## [doc1933]                  The |King | and Country debate :
## [doc1933] ohammed Nadir Shah , |King | of Afghanistan ( b. 
## [doc1933] ohammed Nadir Shah , |King | of Afghanistan ( b. 
## [doc1933]          September – |King | Faisal I of Iraq ( b
## [doc1934]           February – |King | Albert I of Belgium 
## [doc1934]           February – |King | Leopold III of Belgi
## [doc1934]              October |King | Alexander           
## [doc1934]                      |King | Alexander I of Yugos
## [doc1934]            October – |King | Alexander of Yugosla
## [doc1934]               June – |King | Albert II of Belgium
## [doc1935]              March – |King | Prajadhipok ( Rama V
## [doc1935]           December – |King | Salman of Saudi Arab
## [doc1935]  d. ) [ ] November – |King | Hussein of Jordan ( 
## [doc1935] li of Hejaz , former |King | of Hejaz and Grand S
## [doc1936]                      |King | Edward VIII of Unite
## [doc1936] i V of Rwanda , last |king | of Rwanda ( d. )    
## [doc1936]                  The |King | performs his last ac
## [doc1936] January – Britain 's |King | George V state funer
## [doc1936]        The abdicated |King | , now HRH Prince Edw
## [doc1936] actor ( b. ) April – |King | Fuad I of Egypt ( b.
## [doc1936]                  The |King | performs his last ac
## [doc1936]            January – |King | George V of United K
## [doc1936]        The abdicated |King | , now HRH Prince Edw
## [doc1936] i V of Rwanda , last |king | of Rwanda ( d. )    
## [doc1937]                      |King | Harald V of Norway [
## [doc1937]                      |King | Harald V of Norway [
## [doc1938] n ( d. ) [ ] January |King | Juan Carlos I of Spa
## [doc1938] merican author May – |King | Moshoeshoe II of Les
## [doc1938]               Ben E. |King | ,                   
## [doc1938]        [ ] January – |King | Farouk of Egypt marr
## [doc1938] iarch ( b. ) April – |King | Oliver , American ja
## [doc1939]           November – |King | Daudi Cwa II of Buga
## [doc1939] ly invades Albania ; |King | Zog flees .         
## [doc1939] general ( b. ) April |King | Ghazi of Iraq ( b. )
## [doc1939]  of Canada Mackenzie |King | , in English , and J
## [doc1939]  of Canada Mackenzie |King | , in English , and J
## [doc1939] ietoa Tanumafili I , |King | of Samoa ( b. )     
## [doc1939]                      |King | George VI and Queen 
## [doc1939]                      |King | Ghazi of Iraq ( b. )
## [doc1939]                  May |King | George VI and Queen 
## [doc1940]               June – |King | Haakon              
## [doc1940] cutes over of exiled |King | Carol II of Romania 
## [doc1940]               WWII : |King | Leopold III of Belgi
## [doc1940]                      |King | Leopold III of Belgi
## [doc1941]           February – |King | Alfonso XIII of Spai
## [doc1942]                      |King |
## [doc1943] ku Syed Sirajuddin , |King | of Malaysia Mark W. 
## [doc1943] y player Billie Jean |King | , American tennis pl
## [doc1943]             August – |King | Boris III of Bulgari
## [doc1943]               WWII : |King | Boris               
## [doc1944]               WWII : |King | Michael 's Coup :   
## [doc1944]                      |King | George II of Greece 
## [doc1944]             December |King | George II of Greece 
## [doc1944]                      |King | Michael 's Coup : Io
## [doc1944]         ) December – |King | Abbas II of Egypt ( 
## [doc1944] ion ( b. ) January – |King | Yuhi V of Rwanda ( b
## [doc1944]              Charles |King | , American actor ( b
## [doc1944]                      |King | ,                   
## [doc1944] ician ( b. ) Charles |King | , American actor ( b
## [doc1945]               June – |King | Haakon              
## [doc1945] cian July Tiong Thai |King | , Malaysian politici
## [doc1945] . ) December Michael |King | , New Zealand popula
## [doc1946]   Inayatullah Khan , |King | of Afghanistan ( b. 
## [doc1946]                Cissy |King | , American dancer , 
## [doc1946]                Cissy |King | , American dancer , 
## [doc1946] ruling amir Abdullah |king | on day it ratifies T
## [doc1946]                      |King | Victor Emmanuel III 
## [doc1946] t Inayatullah Khan , |King | of Afghanistan ( b. 
## [doc1946]               July – |King | David Hotel bombing 
## [doc1946] idol ( Rama VIII ) , |King | of Thailand ( assass
## [doc1946] June – In Thailand , |King | Bhumibol Adulyadej (
## [doc1947]              Stephen |King | , American writer an
## [doc1947]                      |King | Michael             
## [doc1947]               July – |King | George VI of United 
## [doc1947] poser ( b. ) April – |King | George II of Greece 
## [doc1947] usician , producer ( |King | Crimson , Emerson , 
## [doc1947]           December – |King | Victor Emmanuel III 
## [doc1947]                      |King | Michael             
## [doc1947]              Stephen |King | , American writer an
## [doc1947]              April – |King | Frederik IX succeeds
## [doc1947] English actor ( d. ) |King | Gyanendra of Nepal F
## [doc1948]                 July |King | Baggot , American ac
## [doc1948] an , American singer |King | George Tupou V of To
## [doc1948] e , American actress |King | Charles III of Unite
## [doc1948]            January – |King | Tomislav            
## [doc1948]                      |King | Baggot , American ac
## [doc1948] i kaBhekuzulu , Zulu |king | ( d. )              
## [doc1949] x owner September Ed |King | , American musician 
## [doc1950]        ( Rama IX ) , |king | of Thailand since , 
## [doc1950] lliam Lyon Mackenzie |King | , Canadian political
## [doc1950]                      |King | Gustaf V of Sweden (
## [doc1950]                      |King | Gustaf V of Sweden (
## [doc1950]      April – Belgian |King | Leopold III announce
## [doc1951] r [ ] January Alveda |King | , American activist 
## [doc1951]               July – |King | Leopold III of Belgi
## [doc1951]               July – |King | Abdullah            
## [doc1951] lm of Prussia ( b. ) |King | Abdullah I of Jordan
## [doc1951] ypt declares himself |king | of Sudan , with no s
## [doc1951]                      |King | George VI opens Fest
## [doc1951] d Hammerstein 's The |King | and I opens on Broad
## [doc1951] d Hammerstein 's The |King | and I opens on Broad
## [doc1951]                  May |King |
## [doc1951]                 July |King | Abdullah I of Jordan
## [doc1951]                  Joe |King | , American actor ( b
## [doc1951]                  Joe |King | , American actor ( b
## [doc1952] eath of her father , |King | George VI , aged , t
## [doc1952] y – Vajiralongkorn , |King | of Thailand ( Rama X
## [doc1952] The State Funeral of |King | George VI of United 
## [doc1952]               July – |King | Farouk of Egypt abdi
## [doc1952]           February – |King | George VI of United 
## [doc1952] ir Jigme Wangchuck , |King | of Bhutan ( b. )    
## [doc1952] eath of her father , |King | George VI , aged , t
## [doc1953] ) Norodom Sihamoni , |King | of Cambodia [ ]     
## [doc1953] Mutesa II , kabaka ( |king | ) of Buganda , is de
## [doc1953] ) Norodom Sihamoni , |King | of Cambodia [ ]     
## [doc1953] – Hussein is crowned |King | of Jordan . [ ]     
## [doc1953]                      |King | Carol II of Romania 
## [doc1953]  and activist ( b. ) |King | Ibn Saud of Saudi Ar
## [doc1953] marshal ( b. ) April |King | Carol II of Romania 
## [doc1954] apore December Gayle |King | , African-American t
## [doc1955]        July Adrienne |King | , American actress D
## [doc1956] lifter ( d. ) June – |King | Diamond , Danish hea
## [doc1956]          June Ernest |King | , American Navy Flee
## [doc1956] a December – Bernard |King | , American basketbal
## [doc1956] d Hammerstein 's The |King | and I , starring Deb
## [doc1956] d Hammerstein 's The |King | and I , starring Deb
## [doc1956]               Ernest |King | , American Navy Flee
## [doc1957]                    ) |King | Haakon              
## [doc1957]                      |King | Haakon VII of Norway
## [doc1958]                      |King | Faisal II of Iraq ( 
## [doc1958]                      |King | Faisal is killed .  
## [doc1958]                      |King | Faisal II of Iraq ( 
## [doc1958] dant of Samuel Aba , |King | of Hungary , age , i
## [doc1958] ab Federation , with |King | Faisal II of Iraq as
## [doc1958]         October Mark |King | , English pop -rock 
## [doc1958]                 Mark |King | , English pop -rock 
## [doc1959]            October – |King | Sisavang            
## [doc1959] American singer July |King | Tupou VI of Tonga [ 
## [doc1959]                      |King | Mutara III of Rwanda
## [doc1959]  and comedian ( d. ) |King | Tupou VI of Tonga [ 
## [doc1959]                      |King | Mutara III of Rwanda
## [doc1960] muddin of Selangor , |King | of Malaysia ( b. )  
## [doc1960] of Negeri Sembilan , |King | of Malaysia ( b. )  
## [doc1960]             December |King | Mahendra of Nepal de
## [doc1960]                      |King | Baudouin of Belgium 
## [doc1960]               June – |King | Bhumibol Adulyadej o
## [doc1960]                      |King | Mahendra of Nepal de
## [doc1960]                      |King | Baudouin of Belgium 
## [doc1960] of Negeri Sembilan , |King | of Malaysia ( b. )  
## [doc1960]  Norodom Suramarit , |King | of Cambodia ( b. ) A
## [doc1961]                      |King | Mohammed V of Morocc
## [doc1961] Hassan II is crowned |King | of Morocco .        
## [doc1961] ember – Charles D.B. |King | ,                   
## [doc1961]                      |King | Mohammed V of Morocc
## [doc1962]              January |King | Abdullah II of Jorda
## [doc1962]  – Ahmad bin Yahya , |King | of Yemen ( b. )     
## [doc1963] pril – Martin Luther |King | , Jr. issues his Let
## [doc1963] tress ( d. ) Bernice |King | , American activist 
## [doc1963] er ( Europe ) August |King | Mohammed VI of Moroc
## [doc1963]         June – Anita |King | , American actress a
## [doc1963]          September – |King | Fahd University of P
## [doc1964]     Paul of Greece , |King | of Greece ( born ) E
## [doc1964] nchen , Sichuan 's ' |King | of Opium ' ( born ) 
## [doc1964] tember – In Athens , |King | Constantine II of Gr
## [doc1964]                March |King | Saud of Saudi Arabia
## [doc1964] rch Paul of Greece , |King | of Greece ( born ) E
## [doc1964]                      |King | Saud of Saudi Arabia
## [doc1965]          September – |King | Constantine II of Gr
## [doc1965]              March – |King | Farouk of Egypt ( b.
## [doc1965]       October – Bart |King | , American cricketer
## [doc1966]               July – |King | Mwambutsa IV Bangiri
## [doc1967] der of Netherlands , |King | of Netherlands Aki A
## [doc1967]           December – |King | Constantine II of Gr
## [doc1968]                      |King | -assassination riots
## [doc1968] ican actor January – |King | Felipe VI of Spain F
## [doc1969]  Abdulaziz Al Saud , |King | of Saudi Arabia ( b.
## [doc1969]  Abdulaziz Al Saud , |King | of Saudi Arabia ( b.
## [doc1970]                      |King | Hussein of Jordan or
## [doc1970]          September – |King | Hussein of Jordan fo
## [doc1971] 400 cadets take over |king | 's palace for hours 
## [doc1971] gist ( b. ) August – |King | Curtis , American sa
## [doc1971] otorcycle racer June |King | Dipendra of Nepal ( 
## [doc1971]                      |King | Dipendra of Nepal ( 
## [doc1971]     January – Regina |King | , American actress [
## [doc1972]            January – |King | Frederick IX of Denm
## [doc1972]               July – |King | Jigme Singye Wangchu
## [doc1972]                      |King | Talal of Jordan ( b.
## [doc1972] Ghana ( b. ) April – |King | Ntare V of Burundi (
## [doc1972]  of Windsor , former |King | Edward VIII of Unite
## [doc1972]                      |King | Talal of Jordan ( b.
## [doc1972]            January – |King | Mahendra of Nepal ( 
## [doc1972] ympic athlete ( b. ) |King | Jigme Dorji Wangchuc
## [doc1972]  of Windsor , former |King | Edward VIII of Unite
## [doc1972]            January – |King | Birendra succeeds hi
## [doc1973] s ( b. ) September – |King | Gustaf VI Adolf of S
## [doc1973]               July – |King | Mohammed Zahir Shah 
## [doc1974] e – Alberta Williams |King | ,                   
## [doc1974] ife of Martin Luther |King | , Sr. , and mother o
## [doc1975]                      |King | Faisal of Saudi Arab
## [doc1975] ger ( b. ) [ ] March |King | Faisal of Saudi Arab
## [doc1975]              March – |King | Faisal of Saudi Arab
## [doc1976]   December – Freddie |King | , American rock guit
## [doc1978]               June – |King | Hussein of Jordan ma
## [doc1978]  ) February – Warren |King | , American cartoonis
## [doc1978]           February – |King | Dragon operation in 
## [doc1979] an of Terengganu and |King | of Malaysia ( b. )  
## [doc1979] an of Terengganu and |King | of Malaysia ( b. )  
## [doc1987]                  The |King | 's Cross fire on Lon
## [doc1987]         November The |King | 's Cross fire on Lon
## [doc1991]  V of Norway becomes |king | of Norway after deat
## [doc1991]  remains of Prussian |King | Frederick Great are 
## [doc1991]  V of Norway becomes |king | of Norway after deat
## [doc1993]  Norodom Sihanouk as |king | .                   
## [doc1993]             August – |King | Albert II of Belgium
## [doc1994]             The Lion |King | , highest - grossing
## [doc1994]  of several Scottish |kings| as well as monarchs 
## [doc1994]             The Lion |King | , highest - grossing
## [doc1999]                  The |King | of Bhutan allows tel
## [doc1999] I of Morocco becomes |king | upon death of his fa
## [doc1999] I of Morocco becomes |king | upon death of his fa
## [doc2001] l kills his father , |king | , his mother and oth
## [doc2001]                      |King | Dipendra died days l
## [doc2001] o effectively became |king | upon his father 's d
## [doc2001] l kills his father , |king | , his mother and oth
## [doc2011]         Al Khalifa , |King | of Bahrain , declare
## [doc2019]                      |King | Vajiralongkorn of Th
## [doc2019] s after abdication , |King | Juan Carlos I of Spa
## [doc2019] s after abdication , |King | Juan Carlos I of Spa
## [doc2023] s III and Camilla as |King | and Queen of United
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "cyan") +
  labs(title = "King", subtitles = "Number of Wikipedia Pages of Years That Mention King For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "king", n = 2000000000000) %>%
  substr(2,8)
## [doc0001] t ( d. ) Izates II , |King | of Adiabene ( d. ) A
## [doc0002] ts with Phraates V , |king | of Parthia , on Euph
## [doc0004]  Hyeokgeose , Korean |king | of Silla ( b. )     
## [doc0004] ds Bak Hyeokgeose as |king | of Korean kingdom of
## [doc0004]                      |King | Phraataces and Queen
## [doc0004] es II , Roman client |king | of Armenia ( b. )   
## [doc0004]  ) Daemusin , Korean |king | of Goguryeo ( d . ) 
## [doc0005] ledges Cunobelinus , |king | of Catuvellauni , as
## [doc0006]         Orodes III , |king | ( shah ) of Parthian
## [doc0007] Edessa is deposed as |king | of Osroene .        
## [doc0008] Tincomarus , deposed |king | of Atrebates , flees
## [doc0008]    Vonones I becomes |king | ( shah ) of Parthian
## [doc0009] first recorded to be |king | of Catuvellauni at C
## [doc0012]     Rhoemetalces I - |king | of Odrysian kingdom 
## [doc0013] sa is reinstalled as |king | of Osroene .        
## [doc0016] onones , beleaguered |king | of Armenia , is summ
## [doc0017]         Maroboduus , |King | of Marcomanni , is d
## [doc0017]      Antiochus III , |King | of Commagene Archela
## [doc0018]  he is recognized as |king | and friend of Rome .
## [doc0019]  Gondophares becomes |king | of Saces .          
## [doc0019] III ) , Roman client |king | of Thrace Vonones I 
## [doc0019]                      |King | Vonones             
## [doc0019]         Maroboduus , |king | of Marcomanni , is d
## [doc0021] f Dongbuyeo , Korean |king | ( b. )              
## [doc0021]                      |King |
## [doc0023]            Juba II , |king | of Mauretania [ ] ( 
## [doc0024]                      |King |
## [doc0024] oman consul Namhae , |king | of Silla [ ]        
## [doc0027]   Herod Agrippa II , |king | of Judea Petronius ,
## [doc0028]                      |King |
## [doc0028] o of Baekje , Korean |king | [ ]                 
## [doc0030] of Goguryeo , Korean |king | ( d. ) Poppaea Sabin
## [doc0034] s III , Roman client |king | of Armenia ( b. )   
## [doc0035] iridates III becomes |king | of Parthia ( until )
## [doc0035] k I ) , Roman client |king | of Armenia Epaticcus
## [doc0037]         Maroboduus , |king | of Marcomanni ( b. c
## [doc0038] licia , Roman client |king | Du Shi , Chinese inv
## [doc0038] es II , Roman client |king | Tiberius Gemellus , 
## [doc0039]          Agrippa I , |king | of Judaea , successf
## [doc0040]   Vardanes I becomes |king | of Parthia , opposed
## [doc0040] tania , Roman client |king | ( executed by Caligu
## [doc0041] audius makes Agrippa |king | of Judea . [ ]      
## [doc0042]   Suro becomes first |king | of Geumgwan Gaya , o
## [doc0043]       Eleven British |kings| , probably including
## [doc0043]                      |King | Vardanes            
## [doc0043]         Togodumnus , |king | of Catuvellauni Trun
## [doc0043]       Eleven British |kings| , probably including
## [doc0044] marries Prasutagus , |king | of British Celtic tr
## [doc0044]    Herod Agrippa I , |king | of Judea ( b. ) [ ] 
## [doc0045]  date ) Vardanes I , |king | of Parthian Empire (
## [doc0046]   After death of its |king | , Thracia becomes a 
## [doc0046] s III , Roman client |king | of Thrace ( murdered
## [doc0047] itician Vardanes I , |king | of Parthian Empire  
## [doc0050] gar V , Roman client |king | of Osroene ( approxi
## [doc0051]  ) [ ] Gotarzes II , |king | of Parthian Empire L
## [doc0051]  Vologases I becomes |king | of Parthian Empire .
## [doc0051] menia , Roman client |king | Vonones II , king of
## [doc0055] az , Parthian client |king | ( b. c. )           
## [doc0058] thian archers led by |king | Tiridates I .       
## [doc0058] nes I , Roman client |king | of Iberia Rhadamistu
## [doc0059] ital as bodyguard to |king | , supported by fifte
## [doc0060] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0060]        Abdagases I , |king | of Parthian Empire (
## [doc0060]                  The |king | 's widow , Boudica ,
## [doc0060] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0060]                  The |king | 's widow , Boudica ,
## [doc0061]                  The |king | 's widow , Boudica ,
## [doc0061]                  The |king | 's widow , Boudica ,
## [doc0061] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0061] [ ] [ ] Prasutagus , |king | of Iceni ( modern Ea
## [doc0062] d by Parthians under |king | Tiridates I .       
## [doc0062] he assault fails and |king | Vologases I retreats
## [doc0066] and two other client |kings| , Antiochus IV of Co
## [doc0068] dates , Roman client |king |
## [doc0069] ection of Venutius , |king | of Brigantes .      
## [doc0070] us II , Roman client |king | of Nabatea Phannias 
## [doc0070] s in Greek ) becomes |king | of Aksum .          
## [doc0071]      Chadae , Korean |king | of Goguryeo ( d. ) L
## [doc0071]  Reign of Rabel II , |king | of Nabataea .       
## [doc0073] nese protectorate on |kings| of Lop Nor and Khota
## [doc0075] eorgia ) for Iberian |king | Mithridates I .     
## [doc0077] u of Baekje , Korean |king | [ ]                 
## [doc0077]                      |King |
## [doc0078]   Pacorus II becomes |king | of Parthian Empire (
## [doc0078] tician Vologases I , |king | of Parthian Empire [
## [doc0080]       Vologases II , |king | of Parthian Empire Z
## [doc0080]                      |King |
## [doc0081]  [ ] Artabanus III , |king | of Parthian Empire  
## [doc0087]    Decebalus becomes |king | of Dacia .          
## [doc0088] lus becomes a client |king | of Rome , he receive
## [doc0090] ris I , Roman client |king |
## [doc0100] aw of Pacores , last |king | of Indo - Parthian K
## [doc0100] ] [ ] Pakores ( last |king | of Indo - Parthian K
## [doc0100]  Agrippa II , Jewish |king | of Judea ( b. ) Apol
## [doc0105] mmarian Pacorus II , |king | of Parthian Empire P
## [doc0106]          Decebalus , |king | of Dacia ( suicide ,
## [doc0110] Pacorus II , ruler ( |King | of Kings ) of Parthi
## [doc0112]                      |King | Jima succeeds       
## [doc0113] tended by GajaBahu , |king | of Central Sri Lanka
## [doc0116]  removes Osroes I as |king | of Parthia , and app
## [doc0119]  Nahapana , Scythian |king | .                   
## [doc0125] iputra Satakarni , a |king | of Andhra dynasty , 
## [doc0128]                      |King |
## [doc0129] , Egyptian patriarch |King | Osroes I of Parthian
## [doc0130]      Huviska becomes |king | of Kushan Empire in 
## [doc0130]         The Scythian |king | Rudradaman I reconqu
## [doc0135] es , Indo - Parthian |king | ( d. ) Epictetus , G
## [doc0136] Martyrs Gajabahu I , |king | of Raja Rata ( moder
## [doc0140] inus Pius recognizes |king | of Quadi , who becom
## [doc0140]                      |King | Mithridates V dies ;
## [doc0140] b. ) Mithridates V , |king | of Parthian Empire  
## [doc0147]                      |King | Vologases           
## [doc0147] b. ) Vologases III , |king | of Parthian Empire X
## [doc0147]                      |King | Vologases           
## [doc0153] alces , Roman client |king |
## [doc0154]                      |King | Eupator of Bosphorus
## [doc0159] ashri Satakarni , as |King | Satavahana of Andhra
## [doc0166]                      |King | Chogo of Baekje succ
## [doc0167]                      |King | Chogo of Baekje wage
## [doc0174] pator , Roman client |king |
## [doc0174] takarni , Satavahana |king | of Andhra .         
## [doc0184]                      |King | Gogukcheon ( Gaonanw
## [doc0184]      Beolhyu becomes |king | of Silla . [ ]      
## [doc0185]  arsman ) , Georgian |king | of Iberia Tigidius P
## [doc0186] aemus , Roman client |king | of Armenia          
## [doc0190]                      |King | Vologases           
## [doc0191]                      |King | Vologases           
## [doc0191]  b. ) Vologases IV , |king | of Parthian Empire Z
## [doc0192]         Cao Zhi ( or |King | Chen ) , Chinese pri
## [doc0195]                      |King | Vologases V and othe
## [doc0196]       Naehae becomes |king | of Silla . [ ]      
## [doc0199] f Geumgwan Gaya , as |king | of Korean kingdom of
## [doc0200] ap dynasty , becomes |king | of Malwa in Classica
## [doc0203] rince Vijaya becomes |king | of Andhra Empire .  
## [doc0208]                      |King | Vologases           
## [doc0208] tician Vologases V , |king | of Parthian Empire  
## [doc0211]   Ardashir I becomes |king | of part of Persia . 
## [doc0214]         Gusu becomes |king | of Baekje . [ ]     
## [doc0215]            I becomes |king | of Caucasian Albania
## [doc0217]                      |King | Artabanus V signs a 
## [doc0219]  Pulona , Satavahana |king | of Andhra , begins i
## [doc0219]  He declares himself |king | of Hanzhong afterwar
## [doc0220]                      |King | Ardashir I , founder
## [doc0224]                      |King | Ardashir I defeats A
## [doc0224] ril – Artabanus IV , |king | of Parthia Du Ji , C
## [doc0226]  b. ) Farn - Sasan , |king | of Parthian Kingdom 
## [doc0227]                  The |kings| of Kushan Empire and
## [doc0227]                      |King | Ardashir I annexes h
## [doc0230]                      |King | Ardashir I of Persia
## [doc0230]        Jobun becomes |king | of Korean kingdom of
## [doc0232] s III , Roman client |king |
## [doc0234]        Saban becomes |king | of Korean kingdom of
## [doc0235] tys ) , Roman client |king | Tiberius Julius Rhes
## [doc0237]                      |King | Ardashir I of Persia
## [doc0241] ( d. ) Sanatruq II , |king | of Hatra ( Ending of
## [doc0242]  ( b. ) Ardashir I , |king | of Sassanid Empire (
## [doc0242]                      |King | Ardashir I , founder
## [doc0244]  Battle of Misiche : |King |
## [doc0246] Baekje Kingdom under |King | Goi of Baekje attack
## [doc0247]     Cheomhae becomes |king | of Korean kingdom of
## [doc0250]      The Goths under |King | Cniva invade Moesia 
## [doc0251]             Sassanid |King |
## [doc0252] tle of Barbalissos : |King |
## [doc0252] rov ) , Roman client |king | of Armenia          
## [doc0252] d VI as new Armenian |king | .                   
## [doc0253] tle of Barbalissos : |King | Shapur I , defeats a
## [doc0254] anzes , Roman client |king | Xiahou Xuan ( or Tai
## [doc0256]                      |King |
## [doc0257] Antioch , Syria from |King | Shapur I of Persia .
## [doc0260]                      |King |
## [doc0260]              Persian |king | Shapur I destroys Ca
## [doc0263]                      |King |
## [doc0264] Wei , styles himself |King | of Jin , penultimate
## [doc0266] s himself with title |king | of kings .          
## [doc0266]                      |King |
## [doc0267]                      |King | Septimius           
## [doc0267] ptimius Odaenathus , |king | of Palmyra ( assassi
## [doc0271]                      |King |
## [doc0272] Shapur I ( Great ) , |king | of Sassanid Empire S
## [doc0273] istorian Hormizd I , |king | of Sassanid Empire S
## [doc0273]                      |King | Hormizd I of Persia 
## [doc0273] on by various vassal |kings| .                   
## [doc0274]           Bahram I , |king | of Sassanid Empire C
## [doc0274] rt of late Sassanian |King | Shapur I and on long
## [doc0276] ty ( d. ) Bahram I , |king | of Sassanid Empire M
## [doc0276]                      |King | Bahram              
## [doc0279] an prince and client |king | Tufa Shujineng , Chi
## [doc0280]                      |King | Bahram              
## [doc0283]                  The |King | of Kings Bahram II f
## [doc0284]                      |King | of Kings Bahram II i
## [doc0284]        Yurye becomes |king | of Korean kingdom of
## [doc0286]     Chaekgye becomes |king | of Korean kingdom of
## [doc0287] cid Tiridates III as |king | over western portion
## [doc0287]  captures a Germanic |king | , latter having prep
## [doc0288] liance with Frankish |king | Gennobaudes .       
## [doc0291]                      |King | Bahram              
## [doc0293]                      |King | Bahram              
## [doc0293]          Bahram II , |king | of Sassanid Empire B
## [doc0293] eat - uncle Narseh , |king | of Persarmenia , mar
## [doc0296]          The Persian |king | Narseh invades Roman
## [doc0297] aign against Persian |king | Narseh .            
## [doc0298]        Girim becomes |king | of Korean kingdom of
## [doc0298]       Bunseo becomes |king | of Korean kingdom of
## [doc0299]  treaty with Persian |king | Narseh will last for
## [doc0301]                      |King | Tiridates III ( Grea
## [doc0303]  and Tiridates III , |king | of Armenia .        
## [doc0304]   Bunseo of Baekje , |king | of Baekje ( Korea ) 
## [doc0304]        Biryu becomes |king | of Korean kingdom of
## [doc0304]   Bunseo of Baekje , |king | of Baekje ( Korea ) 
## [doc0309]  trip , and Sasanian |king | is mortally wounded 
## [doc0309] hapur II ( Great ) , |king | of Sassanid Empire (
## [doc0309]                      |King | Hormizd II , ruler o
## [doc0309]                After |king | refuses , Hormizd in
## [doc0309] sanid army and kills |king | .                   
## [doc0310]      Haelhae becomes |king | of Korean kingdom of
## [doc0319]                      |King | Chandragupta I succe
## [doc0320]                      |King | Chandragupta I found
## [doc0323] an prince and client |king | Zhang Bin ( or Mengs
## [doc0328]   December – Lakhmid |king | Imru ' al - Qays ibn
## [doc0330]              Ezana , |king | of Axum , extends hi
## [doc0330] ates III ( Great ) , |king | of Armenia Vicinius 
## [doc0335] ndragupta I , Indian |king | of Gupta Empire Chen
## [doc0335]                 I as |king | of Gupta Empire .   
## [doc0337] er – Hannibalianus , |king | of Pontus and nephew
## [doc0337]                      |King | Shapur II of Persia 
## [doc0338]          Shapur II , |king | of Persian Empire , 
## [doc0339] all ) , Roman client |king | ( approximate date )
## [doc0342] is VI , Roman client |king |
## [doc0344]    Biryu of Baekje , |king | of Baekje ( Three Ki
## [doc0344]          His enemy , |King | Shapur II , is force
## [doc0344]          Gye becomes |king | of Korean kingdom of
## [doc0346]    Geunchogo becomes |king | of Korean kingdom of
## [doc0350] Iraq ) is founded by |king | Shapur II .         
## [doc0350]                      |King | Pushyavarman establi
## [doc0352]             Heavenly |King | ( Tian Wang )       
## [doc0356]       Naemul becomes |king | of Silla dynasty ( T
## [doc0357]              Saran , |King | of Ulster , is overt
## [doc0358]            Persia 's |king | Shapur II sends an e
## [doc0359]          Godigisel , |king | of Vandals ( d. )   
## [doc0359]                      |King | Shapur II Great of P
## [doc0360]                      |King | Shapur II continues 
## [doc0363]                      |King | Shapur              
## [doc0368] igned with Macrian , |king | of Bucinobantes , an
## [doc0369]    Fritigern becomes |king | of Visigoths ; amids
## [doc0369]                Their |king | Athanaric is defeate
## [doc0369]                      |King |
## [doc0370]  I ( or Alaricus ) , |king | of Visigoths ( d. ) 
## [doc0371] op ( b. ) Gogugwon , |king | of Goguryeo ( Korea 
## [doc0371]      Sosurim becomes |king | of Goguryeo .       
## [doc0372]                      |King | Athanaric is defeate
## [doc0373]                      |King | Shapur II declares w
## [doc0374] gaeto Great , Korean |king | of Goguryeo ( d. ) [
## [doc0374] menia ( or Papas ) , |king | of Armenia Auxentius
## [doc0375]     Geungusu becomes |king | of Korean kingdom of
## [doc0376] n bishop Ermanaric , |king | of Goths ( Greuthung
## [doc0377]              Persian |king | Shapur II pushes Hun
## [doc0378] ins to replace Mayan |kings| with relatives of Sp
## [doc0379] shir II , governor - |king | of Adiabene , is pla
## [doc0379]           Gunderic , |king | of Vandals and Alans
## [doc0379]                  [ ] |King | Shapur II , ruler of
## [doc0380] al Athanaric becomes |king | of entire Gothic nat
## [doc0380] d saints Fritigern , |king | of Visigoths Samudra
## [doc0381] ecomes first foreign |king | to visit Eastern Rom
## [doc0381]  has been undisputed |king | of all Goths for jus
## [doc0381] of Genoa Athanaric , |king | of Visigoths Saint M
## [doc0383]                      |King | Ardashir II dies aft
## [doc0383] dashir II , Sassanid |king | ( shah ) ( King of K
## [doc0384]           Geungusu , |king | of Baekje ( Korea ) 
## [doc0384]                      |King | Shapur III signs a t
## [doc0384]                      |King | Chimnyu ascends to o
## [doc0385] sa of Baekje becomes |king | of ancient Korean ki
## [doc0385] ibly ) [ ] Chimnyu , |king | of Baekje ( Korea ) 
## [doc0387]                      |King |
## [doc0388]                      |King | Shapur III dies afte
## [doc0388] mes twelfth Sassanid |king | of Persia .         
## [doc0388] i state Shapur III , |king | of Sassanid Empire (
## [doc0389]  needed ] Geiseric , |king | of Vandals and Alans
## [doc0390]              Bleda , |king | of Huns ( approximat
## [doc0390]  , daughter of Gupta |king | Chandragupta II .   
## [doc0391]                      |King | Gwanggaeto Great of 
## [doc0392]         Asin becomes |king | of Korean kingdom of
## [doc0394]      Jangsu , Korean |king | of Goguryeo ( d. )  
## [doc0395]                      |King | Rudrasimha III , rul
## [doc0395] alty and is declared |king | , waging war against
## [doc0397] ch – K'uk B'alam I , |king | of Palenque ( Mexico
## [doc0399] Siricius Bahram IV , |king | of Sassanid Empire (
## [doc0399]                      |King | Bahram IV dies after
## [doc0401] e Visigoths , led by |king | Alaric I , cross Alp
## [doc0402]     Silseong becomes |king | of Korean kingdom of
## [doc0402]                      |King | Gwanggaeto Great of 
## [doc0402]                      |King | Alaric I sends envoy
## [doc0405]       Jeonji becomes |king | of Korean kingdom of
## [doc0405]                      |King | Radagaisus leads an 
## [doc0405]  court of Alaric I , |king | of Visigoths.       
## [doc0406]  Radagaisus , Gothic |king | Alban of Mainz , pri
## [doc0408]                      |King | Alaric              
## [doc0408]                      |King | Yazdegerd           
## [doc0409]       The Visigothic |king | Alaric I lays siege 
## [doc0410] te date ) Alaric I , |king | of Visigoths [ ]    
## [doc0410] Ataulf , who becomes |king | of Visigoths .      
## [doc0410] Prithivisena becomes |king | of Vakataka in Decca
## [doc0411] general Gundomar I , |king | of Burgundy Yax Nuun
## [doc0411]                      |King |
## [doc0413] e Gwanggaeto Great , |king | of Goguryeo ( b. )  
## [doc0414] arried to Visigothic |king | Ataulf at Narbonne .
## [doc0415]            Athaulf , |king | of Visigoths Chandra
## [doc0415]                      |King | Ataulf and his pregn
## [doc0415]              Euric , |king | of Visigoths ( d. ) 
## [doc0415]  of Ataulf , becomes |king | of Visigoths .      
## [doc0416]                      |King | Wallia occupies gold
## [doc0417]        Nulji becomes |king | of Korean kingdom of
## [doc0417]                      |King | Wallia establishes h
## [doc0418] rius bribes Wallia , |king | of Visigoths , into 
## [doc0418]  Theodoric I becomes |king | of Visigoths .      
## [doc0418] pe Zosimus Attaces , |king | of Alans Wallia , ki
## [doc0420]       Guisin becomes |king | of Korean kingdom of
## [doc0420] uary – Yazdegerd I , |king | of Sassanid Empire F
## [doc0420] us Maximus Valamir , |king | of Ostrogoths ( he i
## [doc0421]                      |King | Bahram V allies hims
## [doc0422] and execute Frankish |king | Theudemeres with his
## [doc0422] date ) Theudemeres , |king | of Franks ( approxim
## [doc0426]                      |King | Gunderic of Vandals 
## [doc0427]                      |King | Jangsu transfers Gog
## [doc0427] stantinople Guisin , |king | of Baekje ( Korea ) 
## [doc0427]         Biyu becomes |king | of Korean kingdom of
## [doc0427]                      |King | Bahram V sends an ex
## [doc0427] Dumnonia , Brythonic |king | ( approximate date )
## [doc0428]            Chlodio , |king | of Salian Franks , i
## [doc0428] ei ( d. ) Gunderic , |king | of Vandals and Alans
## [doc0428]   Artaxias IV , last |king | of Greater Armenia ,
## [doc0428]                      |King | Gunderic , age , die
## [doc0428]                      |King |
## [doc0430]    The Vandals under |King | Genseric extend powe
## [doc0431] er , first barbarian |king | of Italy ( d. )     
## [doc0431]                      |King | Chlodio signs a peac
## [doc0432] e Huns are united by |King | Rugila ( also called
## [doc0434] u state Xia Rugila , |king | of Huns ( approximat
## [doc0434]             Attila , |king | of Huns , consolidat
## [doc0435] ndividually as Mayan |kings| .                   
## [doc0435]                      |King | Genseric concludes a
## [doc0436]                      |King | Theodoric I besieges
## [doc0436]            Gunther , |king | of Burgundians ( app
## [doc0437]        Childeric I , |king | of Salian Franks ( a
## [doc0438] ia ( d. ) Bahram V , |king | of Persian Empire Fe
## [doc0438] s fifteenth Sassanid |king | of Persian Empire . 
## [doc0439]                      |King | Genseric breaks his 
## [doc0440] lgaid mac Fiachrae , |king | of Connacht ( Irelan
## [doc0440] s return to court of |king | Genseric .          
## [doc0440] ) Euric , Visigothic |king | and son of Theodoric
## [doc0441]                      |King | Yazdegerd           
## [doc0441]                      |King | Hermeric dies after 
## [doc0441] an ( d. ) Hermeric , |king | of Suebi John , Patr
## [doc0441]  , Vortimer ( son of |king | Vortigern ) , defeat
## [doc0445] imself , and becomes |king | of Hunnic Empire .  
## [doc0446]  mercenaries , under |King | Vortigern , appeal t
## [doc0446] thinn mac Coelboth , |king | of Leinster ( Irelan
## [doc0447]          Vortigern , |king | of Britons , receive
## [doc0448]            Rechila , |king | of Suebi ( approxima
## [doc0448] daughter of Visigoth |king | Theodoric I and conv
## [doc0448] is father Rechila as |king | of Suebi in Galicia 
## [doc0449] Vortigern , supposed |king | of Britons , invites
## [doc0449] te date ) Kavadh I , |king | of Persian Empire ( 
## [doc0450]  command of Visigoth |king | Theodoric I .       
## [doc0450]                      |King | Yazdegerd           
## [doc0450]  date ) Thrasamund , |king | of Vandals ( d. ) Ju
## [doc0450] i legendary Frankish |king | and supposed great -
## [doc0450]  d. ) Chilperic II , |king | of Burgundy ( approx
## [doc0451] ather Theodoric I as |king | of Visigoths .      
## [doc0451]                      |King | Yazdegerd           
## [doc0451] forces with Visigoth |king | Theodoric I .       
## [doc0451]        Theodoric I , |king | of Visigoths Liu Yik
## [doc0452]           Gundobad , |king | of Burgundians ( app
## [doc0452]            Drest I , |king | of Picts ( approxima
## [doc0452]                      |King | Vortigern marries He
## [doc0453]  Wen Di Thorismund , |king | of Visigoths Wen Di 
## [doc0453] rother Thorismund as |king | of Visigoths , Thori
## [doc0454]    Theodoric Great , |king | of Ostrogoths ( d. )
## [doc0454] er militum ) Ellac , |king | of Huns [ ]         
## [doc0455] une – Sack of Rome : |King | Genseric leads Vanda
## [doc0455]        Gaero becomes |king | of Korean kingdom of
## [doc0455]  his son Oisc become |king | of Kent .           
## [doc0455] ire Biyu of Baekje , |king | of Baekje [ ]       
## [doc0456]  The Visigoths under |King | Theodoric II , actin
## [doc0456] ate date ) Rechiar , |king | of Suebi ( captured 
## [doc0456]           Talorc I , |king | of Picts ( approxima
## [doc0457] seventeenth Sasanian |king | of Persian Empire. [
## [doc0457]       Yazdegerd II , |king | of Persian Empire [ 
## [doc0457] an Empire Merovech , |king | of Salian Franks ( a
## [doc0458] nstantinople Nulji , |king | of Silla ( Korea )  
## [doc0458] s father Merovech as |king | of Salian Franks .  
## [doc0458]         Jabi becomes |king | of Korean kingdom of
## [doc0459]                      |King |
## [doc0459]  saint Hormizd III , |king | of Sasanian Empire (
## [doc0459]                      |King | Theodemir sends his 
## [doc0459]                      |King | Dhatusena of Anuradh
## [doc0459] B'utz Aj Sak Chiik , |king | of Palenque ( Mexico
## [doc0460]                      |King | Genseric , fearing a
## [doc0460]            However , |King | Genseric organizes a
## [doc0460]           Budic II , |king | of Brittany ( approx
## [doc0461]  The Visigoths under |king | Theodoric II recaptu
## [doc0461]                      |King | Genseric continues V
## [doc0461]           Hilderic , |king | of Vandals ( approxi
## [doc0462]  Olybrius Muryeong , |king | of Baekje ( Korea ) 
## [doc0463] d. ) Frumar , Suevic |king | of Galicia ( approxi
## [doc0463]        Childeric I , |king | of Salian Franks , a
## [doc0463] ns , Visigoths under |King | Theodoric II are def
## [doc0464] n ) is unified under |King | Remismund .         
## [doc0464]                      |King | Theodoric II sends R
## [doc0464] te ) Conall Gulban , |king | of Tir Chonaill ( ap
## [doc0465] ty Eógan mac Néill , |king | of Tír Eoghain ( Ire
## [doc0465]                      |King | Remismund establishe
## [doc0466]             Arthur , |king | of Britons ( approxi
## [doc0466]  b. ) Theodoric II , |king | of Visigoths Yifu Hu
## [doc0466]                      |King | Theodoric           
## [doc0467]  d. ) Cerdic , first |king | of Anglo - Saxon Wes
## [doc0467]             Summer – |King | Genseric extends his
## [doc0468] Hilarius Dengizich , |king | of Huns ( approximat
## [doc0469]                      |King | Euric declares himse
## [doc0469] with Salian Frankish |king | Childeric I , agreei
## [doc0469] y ( d. ) Dengizich , |king | of Huns ( approximat
## [doc0470]  K'inich Popol Hol , |king | of Maya city of Copá
## [doc0471]  father Theodemir as |king | of Ostrogoths , sett
## [doc0473]                      |King | Euric orders invasio
## [doc0473]            Gondioc , |king | of Burgundy ( approx
## [doc0473] s died , and becomes |king | of Burgundians .    
## [doc0473]            Kavad I , |king | ( shah ) of Sasanian
## [doc0474]          Theodemir , |king | of Ostrogoths ( appr
## [doc0475]              Gaero , |king | of Baekje ( Korea ) 
## [doc0475]        Munju becomes |king | of Baekje . [ ]     
## [doc0476] laimed rex Italiae ( |king | of Italy ) by his tr
## [doc0476]                      |King | Gaiseric gives Sicil
## [doc0476]  The Visigoths under |King | Euric march into Ita
## [doc0477]              Munju , |king | of Baekje ( Korea ) 
## [doc0477] January – Genseric , |king | of Vandals and Alans
## [doc0477]      Samgeun becomes |king | of Korean kingdom of
## [doc0477]        Aelle , first |king | of South Saxons , la
## [doc0479]            Samgeun , |king | of Baekje ( Korea ) 
## [doc0479]    Dongseong becomes |king | of Korean kingdom of
## [doc0479] tish , is proclaimed |king | of Britons ( accordi
## [doc0479]         Soji becomes |king | of Korean kingdom of
## [doc0479]                      |King | Theodoric Great star
## [doc0480]                      |King | Chilperic           
## [doc0480]  The Visigoths under |King | Euric extend rule fr
## [doc0480] Dumnonia , Brythonic |king | ( approximate date )
## [doc0480]            Baderic , |king | of Thuringii ( appro
## [doc0481]        Childeric I , |king | of Salian Franks ( o
## [doc0481]                      |King | Childeric           
## [doc0483] rimthann mac Énnai , |king | of Leinster ( Irelan
## [doc0484]                      |King | Peroz               
## [doc0484]  A few weeks later , |King | Huneric removes Cath
## [doc0484]            Huneric , |king | of Vandals Euric , k
## [doc0484]           February – |King | Huneric passes Edict
## [doc0484]                      |King | Gundobad proclaims L
## [doc0484]         The Visigoth |king | Euric dies and is su
## [doc0484]  crowned and becomes |king | of Persia .         
## [doc0484] hamund , who becomes |king | of Vandals .        
## [doc0484] evolt from Ostrogoth |king | Theodoric Great .   
## [doc0485] date ) Theuderic I , |king | of Franks ( approxim
## [doc0485]    Aelle of Sussex , |king | of South Saxons , fi
## [doc0486] to Visigoths ( under |King | Alaric II ) , but Cl
## [doc0486] har , Frankish petty |king | ( regulus ) , as his
## [doc0487]                      |King |
## [doc0487] te date ) Syagrius , |king | of Romans ( approxim
## [doc0488] d by his son Oisc as |king | of Kent .           
## [doc0488] tablished himself as |king | of Italy ( see ) .  
## [doc0488] Wei ( d . ) Balash , |king | of Persian Empire He
## [doc0488] lind uncle Balash as |king | of Persia .         
## [doc0489]  Ostrogoths , led by |king | Theodoric Great , in
## [doc0490]  Burgundians , under |King | Gundobad , cross Alp
## [doc0490]                      |King | Theodoric Great retr
## [doc0490]                      |King | Alaric II supports T
## [doc0492]                      |King | Theoderic Great conq
## [doc0493] er , first barbarian |king | of Italy ( b. )     
## [doc0493] atives to princes or |kings| of Burgundians , Van
## [doc0493] eland Chilperic II , |king | of Burgundy Daniel S
## [doc0495] ráech mac Finchada , |king | of Leinster         
## [doc0495] ( approximate date ) |King | Chlodomer of Franks 
## [doc0495]  Northern Wei ( d. ) |King | Theudebert          
## [doc0496] d historian Gibuld , |king | of Alamanni Gunthamu
## [doc0496]                      |King | Clovis              
## [doc0496]                      |King | Kavadh              
## [doc0496]  death , and becomes |king | of Vandals .        
## [doc0496]        Gibuld , last |king | of Alamanni , is kil
## [doc0496]       Childebert I , |king | of Franks ( d. ) Erz
## [doc0497] gnition to Ostrogoth |king | Theodoric Great , as
## [doc0497]  date ) Chlothar I , |king | of Franks ( d . ) Ha
## [doc0500]     Dauí Tenga Uma , |king | of Connacht ( Irelan
## [doc0500]                      |King | Clovis I pursues him
## [doc0500] ximate date ) Octa , |king | of Kent ( approximat
## [doc0500]         Thrasamund , |king | of Vandals , marries
## [doc0500]     Gwynllyw , Welsh |king | and religious figure
## [doc0500]      Jijeung becomes |king | of Korean kingdom of
## [doc0501]          Godegisel , |king | of Burgundians Pan Y
## [doc0501]                      |King | Gundobad breaks his 
## [doc0501]       He becomes new |king | of Dál Riata ( moder
## [doc0501]  of Lyon Dongseong , |king | of Baekje ( Korea ) 
## [doc0501]     Muryeong becomes |king | of Baekje ( one of T
## [doc0502]           Amalaric , |king | of Visigoths ( d. ) 
## [doc0502] s , called by Gothic |king | Theodoric Great , cl
## [doc0502]                      |King | Kavadh              
## [doc0502] of Iberia , Georgian |king | ( approximate date )
## [doc0502]              March – |King | Gundobad issues a ne
## [doc0503]        Mundhir III , |king | of Lakhmids ( Arab C
## [doc0503]                      |King | Kavadh              
## [doc0503]                      |King | Ernakh , son of Atti
## [doc0503]           ) Ernakh , |king | of Huns output { fon
## [doc0504]                      |King | Kavadh              
## [doc0504]                      |King | Theodoric Great defe
## [doc0505] e date ) Dynod Bwr , |king | of Hen Ogledd ( appr
## [doc0506]           February – |King | Alaric              
## [doc0507]          Alaric II , |king | of Visigoths Aprus ,
## [doc0507] nce with Ostrogothic |king | Theodoric Great .   
## [doc0507]        Hermanafrid , |king | of Thuringii , marri
## [doc0507]  father Alaric II as |king | of Visigoths .      
## [doc0508] sty ( d. ) Geraint , |king | of Dumnonia ( approx
## [doc0508]                      |King | Theodoric Great send
## [doc0508]   Battle of Netley : |King | Cerdic of Wessex mov
## [doc0509] i ( d. ) Chlodoric , |king | of Ripuarian Franks 
## [doc0509] comes first Catholic |king | of Franks , uniting 
## [doc0510]                      |King | Budic               
## [doc0510] dat Abbey Drest II , |king | of Picts ( approxima
## [doc0510]                      |King | Theodoric Great rais
## [doc0511] ovember – Clovis I , |king | of Franks [ ]       
## [doc0511]          Ostrogothic |King | Theodoric Great assu
## [doc0511]           November – |King | Clovis I dies at Par
## [doc0512]                      |King | Theodoric Great gran
## [doc0513]                      |King | Kavadh              
## [doc0513] Wei ( d. ) Gesalec , |king | of Visigoths ( appro
## [doc0514] sa of Sussex becomes |king | of South Saxons afte
## [doc0514]    Beopheung becomes |king | of Korean kingdom of
## [doc0514]    Aelle of Sussex , |king | of Sussex ( approxim
## [doc0515] uintha , daughter of |king | Theodoric Great , ma
## [doc0516]            Hygelac , |king | of Geats ( Sweden ) 
## [doc0516]                      |King | Gundobad of Burgundi
## [doc0516]          Athalaric , |king | of Ostrogoths ( d. )
## [doc0517]                      |King | Sigismund of Burgund
## [doc0517]        Charibert I , |king | of Franks ( approxim
## [doc0518]   Jabalah IV becomes |king | of Ghassanids .     
## [doc0519] Cerdic becomes first |king | of Kingdom of Wessex
## [doc0519] myeong of Goguryeo , |king | of Goguryeo [ ]     
## [doc0520] Ardgal mac Conaill , |king | of Uisneach ( Irelan
## [doc0520]                      |King | Pabo Post Prydain of
## [doc0520]                      |King | Budic               
## [doc0521] arib Ya` fur becomes |king | , supported by Aksum
## [doc0522] reat Galan Erilich , |king | of Picts ( approxima
## [doc0522]  age , is proclaimed |king | of Visigoths .      
## [doc0523]                      |King | Chlothar            
## [doc0523]        Seong becomes |king | of Baekje , one of T
## [doc0523]  reign , and becomes |king | of Vandals and Alans
## [doc0523]                      |King | Sigismund of Burgund
## [doc0523]  in Yemen Muryeong , |king | of Baekje ( Three Ki
## [doc0524] aint [ ] Chlodomer , |king | of Franks Sigismund 
## [doc0524]                May – |King | Sigismund of Burgund
## [doc0525]    Bandzhis Firenz , |king | of Danmark and Medie
## [doc0525]  ( d . ) Liuvigild , |king | of Visigoths ( d. ) 
## [doc0525]                      |King | Theodoric Great send
## [doc0525]              Kaleb , |king | of Aksum , collects 
## [doc0526]  – Theodoric Great , |king | of Ostrogoths ( b. )
## [doc0526]             August – |King | Theodoric Great dies
## [doc0526] man – Persian Wars : |King | Kavad               
## [doc0526] aric , age , becomes |king | of Visigoths , and a
## [doc0527] llan mac Dúnlainge , |king | of Leinster ( Irelan
## [doc0527]                      |King | Cerdic of Wessex and
## [doc0527] scwine becomes first |king | of Essex ( approxima
## [doc0528]                      |King | Seong of Baekje adop
## [doc0528] n , Maharaja ( great |king | ) of Malwa , defeats
## [doc0528] IV ibn al - Harith , |king | of Ghassanids Justin
## [doc0529] ( d. ) [ ] Baderic , |king | of Thuringii ( b. c.
## [doc0529]  by China , as first |king | of fourth dynasty of
## [doc0529] abalah becomes fifth |king | of Ghassanids .     
## [doc0530]          Drest III , |king | of Picts ( approxima
## [doc0530]                      |King | Hilderic is deposed 
## [doc0530]              Cador , |king | of Dumnonia ( Englan
## [doc0531]   Hermanafrid , last |king | of Thuringii , is de
## [doc0531] d - bearer of former |king | Theodoric Great , su
## [doc0531] aine mac Cearbhall , |king | of Uí Maine ( or ) X
## [doc0531]                      |King | Childebert          
## [doc0531]  Clovis I Drest IV , |king | of Picts ( approxima
## [doc0531]                      |King | Kavadh I , age , die
## [doc0531] ty ( b. ) Amalaric , |king | of Visigoths ( assas
## [doc0532]  Áedán mac Gabráin , |king | of Dál Riata ( Scotl
## [doc0532] Peace , with Persian |king | Khosrau I , ending I
## [doc0533] Sardinia ; Gelimer , |king | of Vandals , dispatc
## [doc0533] uderic I and becomes |king | of Austrasia .      
## [doc0533] te date ) Hilderic , |king | of Vandals and Alans
## [doc0534]       Cynric becomes |king | of Wessex ( accordin
## [doc0534]              March – |King | Gelimer surrenders t
## [doc0534]            October – |King | Athalaric dies of tu
## [doc0534] h her but he will be |king | of Ostrogoths in nam
## [doc0534]         The Frankish |kings| Childebert I and Chl
## [doc0534]                      |King | Theudis expands Visi
## [doc0534] ctober – Athalaric , |king | of Ostrogoths Anthem
## [doc0535]         Sigebert I , |king | of Austrasia ( appro
## [doc0535]              April – |King |
## [doc0535]         Theudebald , |king | of Austrasia ( appro
## [doc0536]          Theodahad , |king | of Ostrogoths ( assa
## [doc0536]           He becomes |king | of Ostrogoths and as
## [doc0537] ( 45,000 men ) under |King | Vitiges begins siege
## [doc0537] son ( or nephew ) of |King | Arthur , also in Bat
## [doc0537] aine mac Cearbhall , |king | of Uí Maine ( or )  
## [doc0537]  Battle of Camlann : |King |
## [doc0537] verius King Arthur , |King | of Britons , in Batt
## [doc0538]             Summer – |King |
## [doc0538]                      |King | Cuneglas of Rhos aba
## [doc0538] c Domangairt becomes |king | of Dál Riata ( Scotl
## [doc0538] f Antioch Cailtram , |king | of Picts ( approxima
## [doc0538] ch – Siege of Rome : |King |
## [doc0538]                      |King | Seong of Paekche ( K
## [doc0539] f Kent Chilperic I , |king | of Neustria ( approx
## [doc0539] le Wacho and becomes |king | of Lombards .       
## [doc0540] ish bishop Vitiges , |king | of Ostrogoths Yifu ,
## [doc0540]  succeeds Vitiges as |king | of Ostrogoths , and 
## [doc0540]                      |King | Khosrau I , jealous 
## [doc0540]            Authari , |king | of Lombards ( approx
## [doc0540]     Jinheung becomes |king | of Korean kingdom of
## [doc0540]                      |King | Custennin ap Cado is
## [doc0540] ed by a ruler ( High |King | ) or overlord , whil
## [doc0541]                      |King | Khosrau I intervenes
## [doc0541]    Totila is elected |king | by Ostrogothic noble
## [doc0541] t in Lazica Eraric , |king | of Ostrogoths Ildiba
## [doc0542] Battle of Faventia : |King |
## [doc0542]                      |King | Childebert          
## [doc0542] of Arles Eógan Bél , |king | of Connacht ( Irelan
## [doc0543]                      |King | Pulakeshin          
## [doc0543] n Zhou ( d. ) Octa , |king | of Kent ( approximat
## [doc0544]                      |King | Khosrau             
## [doc0545]                      |King | Khosrau             
## [doc0545]                      |King |
## [doc0545] mate date Budic II , |king | of Brittany Laurence
## [doc0546] succeeds Walthari as |king | of Lombards .       
## [doc0546]           Walthari , |king | of Lombards         
## [doc0547]                      |King |
## [doc0547] n Hir ap Cadwallon , |king | of Gwynedd ( approxi
## [doc0547]  years , and becomes |king | of Austrasia ( or ) 
## [doc0547] eat of Anglo - Saxon |kings| ( according to Histo
## [doc0548] e Empress Carcasan , |king | of Ifuraces ( Algeri
## [doc0548]                      |King | Gubazes             
## [doc0548]       Theudebert I , |king | of Austrasia ( or ) 
## [doc0548]            Theudis , |king | of Visigoths        
## [doc0549] ia [ ] Theudigisel , |king | of Visigoths ( assas
## [doc0549] ceeds Theudigisel as |king | of Visigoths , after
## [doc0549]        Theudigisel , |king | of Visigoths ( assas
## [doc0549] y – Ailill Inbanda , |king | of Connacht ( Irelan
## [doc0550] The Ostrogoths under |king | Totila recapture Rom
## [doc0550]            Drest V , |king | of Picts Germanus , 
## [doc0550]            Drest V , |king | of Picts Germanus , 
## [doc0550]           Chararic , |king | of Suevi , converts 
## [doc0551] der joint command of |kings| Totila and Theudebal
## [doc0551] s against Visigothic |king | Agila .             
## [doc0552] a Gothic force under |king | Totila near Taginae 
## [doc0552]             Cynric , |king | of Wessex , captures
## [doc0552]         Æthelberht , |king | ( bretwalda ) of Ken
## [doc0552] ilan July – Totila , |king | of Ostrogoths Decemb
## [doc0552]    Teia becomes last |king | of Ostrogoths in Ita
## [doc0552] : The Lombards under |King | Audoin defeat Gepids
## [doc0553] kic Khaganate Teia , |king | of Ostrogoths [ ]   
## [doc0553]  Mons Lactarius :[ ] |King | Teia secretly marche
## [doc0553]                      |King |
## [doc0553]            Gelimer , |king | of Vandals and Alans
## [doc0553] te unknown Gelimer , |king | of Vandals and Alans
## [doc0554]  ] March - Agila I , |king | of Visigoths [ ] exa
## [doc0554]  general [ ] Seong , |king | of Baekje ( Korea ) 
## [doc0554]       Wideok becomes |king | of Korean kingdom of
## [doc0554]  Mundhir succeeds as |king | of Lakhmids .       
## [doc0554] nagild is crowned as |king | of Visigoths and suc
## [doc0555]         Theudebald , |king | of Austrasia [ ]    
## [doc0555] Erb of Gwent , Welsh |king | [ ]                 
## [doc0555] tober - Gubazes II , |king | of Lazica ( Georgia 
## [doc0555]                      |King | Erb of Gwent ( in So
## [doc0555]                      |King | Gubazes             
## [doc0555]         Theudebald , |king | of Austrasia [ ]    
## [doc0555]                      |King | Chlothar            
## [doc0555] Erb of Gwent , Welsh |king | [ ]                 
## [doc0556]                      |King | Khosrau             
## [doc0556]    Echu Tirmcharna , |king | of Connacht ( Irelan
## [doc0556]                      |King | Chlothar            
## [doc0556]                      |King | Cynric and his son C
## [doc0557]                      |King | Chlothar            
## [doc0558] rán mac Domangairt , |king | of Dál Riata Jing Di
## [doc0558] ber – Childebert I , |king | of Franks [ ]       
## [doc0558]       [ ] December – |King | Chlothar I reunites 
## [doc0558] mac Comgaill becomes |king | of Dál Riata , a Gae
## [doc0559]         Reccared I , |king | of Visigoths ( d. ) 
## [doc0559] ds his father Ida as |king | of Bernicia ( North 
## [doc0559]                Ida , |king | of Bernicia ( approx
## [doc0560] his father Cynric as |king | of Wessex ( approxim
## [doc0560] p and saint Glappa , |king | of Bernicia ( approx
## [doc0560] after his death , as |king | of Lombards .       
## [doc0560]          Thurisind , |king | of Gepids ( approxim
## [doc0560]         Ælla becomes |king | of Deira ( according
## [doc0560] ap Cado abdicates as |king | of Dumnonia ( South 
## [doc0560] is brother Glappa as |king | of Bernicia ( approx
## [doc0560] op of Éauze Audoin , |king | of Lombards ( approx
## [doc0561]         Chlothar I , |king | of Franks Aregund , 
## [doc0561]           November – |King | Chlothar I ( Old ) d
## [doc0562]                      |King |
## [doc0562]  Silla , by order of |king | Jinheung , wages war
## [doc0562]  Year Peace Treaty , |King | Khosrau I recognises
## [doc0563]  d. ) Chindasuinth , |king | of Visigoths ( d. ) 
## [doc0565] pts between Alboin , |king | of Lombards , and Ki
## [doc0565]            Sisebut , |king | of Visigoths ( appro
## [doc0566]                      |King | Alboin of Lombards m
## [doc0566] ther Pulakeshin I as |king | of Chalukya dynasty 
## [doc0566] neral Pulakeshin I , |king | of Chalukya dynasty 
## [doc0567]        Charibert I , |king | of Franks [ ]       
## [doc0567]                      |King | Charibert I dies wit
## [doc0567] xandria Athanagild , |king | of Visigoths [ ]    
## [doc0567]         Sigebert I , |king | of Austrasia , marri
## [doc0567]              Cissa , |king | of South Saxons Cuni
## [doc0568]  his brother Adda as |king | of Bernicia ( modern
## [doc0568]         Sigebert I , |king | of Austrasia , repel
## [doc0568] ynasty ( d. ) Adda , |king | of Bernicia ( approx
## [doc0569] Harith V and becomes |king | of Ghassanids .     
## [doc0569] Harith ibn Jabalah , |king | of Ghassanids Peter 
## [doc0570] te ) Childebert II , |king | of Austrasia ( d. ) 
## [doc0571]            Liuva I , |king | of Visigoths ( or ) 
## [doc0571] Anglo - Saxons under |King | Cuthwulf fight again
## [doc0571]  Wuffa becomes first |king | of East Anglia , as 
## [doc0571]  The Visigoths under |King | Liuvigild invade Byz
## [doc0572]            Liuva I , |king | of Visigoths ( or ) 
## [doc0572]      June – Alboin , |king | of Lombards , is mur
## [doc0572]  brother Æthelric as |king | of Bernicia ( southe
## [doc0572]  of Pavia ( –572 ) : |King | Alboin captures Tici
## [doc0572] sman June – Alboin , |king | of Lombards Æthelric
## [doc0573]                      |King | Cleph completes Lomb
## [doc0573] p Ceidio , Brythonic |king | Narses , Byzantine g
## [doc0573]                  [ ] |King | Sigibert            
## [doc0574]  The Visigoths under |King | Liuvigild invade Can
## [doc0574] ope John III Cleph , |king | of Lombards ( or )  
## [doc0574]                      |King | Cleph is murdered af
## [doc0574] onall mac Comgaill , |king | of Dál Riata [ ] Xua
## [doc0574]  mac Gabráin becomes |king | of Dál Riata ( Scotl
## [doc0575] he is proclaimed new |king | of Neustria by noble
## [doc0575]     Áed mac Echach , |king | of Connacht ( Irelan
## [doc0575] ction from Guntram , |king | of Burgundy .       
## [doc0575] aganate Sigebert I , |king | of Austrasia ( appro
## [doc0575] father Sigibert I as |king | of Austrasia .      
## [doc0575] f Druim Cett : Irish |kings| discuss relationship
## [doc0575]  The Visigoths under |King | Liuvigild invade Sue
## [doc0576]        Jinji becomes |king | of Korean kingdom of
## [doc0576]  The Visigoths under |King | Liuvigild establish 
## [doc0578] nasty ( b. ) Wuffa , |king | of East Anglia ( app
## [doc0579]  , son of Visigothic |king | Liuvigild , marries 
## [doc0579] nedict I Khosrau I , |king | of Persian Empire Th
## [doc0579] brother Theodoric as |king | of Bernicia ( Scotla
## [doc0579] izd IV , who becomes |king | of Persian Empire . 
## [doc0579]    Jinpyeong becomes |king | of Korean kingdom of
## [doc0579]                      |King | Khosrau             
## [doc0579] evied by Merovingian |king | Chilperic I of Neust
## [doc0580]                      |King | Liuvigild calls for 
## [doc0580] mad Cadfan ap Iago , |king | of Gwynedd ( approxi
## [doc0580]  father Eormenric as |king | ( bretwalda ) of Ken
## [doc0580]    The Avars , under |King | ( khagan )          
## [doc0580] ate ) Bacurius III , |king | of Iberia ( Georgia 
## [doc0581]     He becomes first |king | of Deira ( according
## [doc0582]  The Visigoths under |King | Liuvigild capture ci
## [doc0583] ad ( d. ) Liuva II , |king | of Visigoths ( d. ) 
## [doc0583]               Miro , |king | of Suevi ( approxima
## [doc0583] s his father Miro as |king | of Suevi ( Hispania 
## [doc0583]                      |King | Liuvigild lays siege
## [doc0584]  The Visigoths under |King | Liuvigild capture ci
## [doc0584]                      |King | Chilperic           
## [doc0584] tle of Fethanleigh : |King | Ceawlin of Wessex is
## [doc0584] ggles with Guntram , |king | of Burgundy , and he
## [doc0584] date ) Chlothar II , |king | of Franks ( d. ) Yan
## [doc0584]                  [ ] |King | Eboric is deposed by
## [doc0584] te date – Bridei I , |king | of Picts            
## [doc0584]  ( son of Cleph ) as |king | and give him capital
## [doc0584] nd proclaims himself |king | ( approximate date )
## [doc0585]  Merovingian usurper |king | , and his followers 
## [doc0585]                      |King | Childebert II , age 
## [doc0585] win of Northumbria , |king | of Deira and Bernici
## [doc0585] rother Frithuwald as |king | of Bernicia ( approx
## [doc0585]  date ) Frithuwald , |king | of Bernicia ( approx
## [doc0585]  The Visigoths under |King | Liuvigild devastate 
## [doc0585]                      |King | Wideok of Baekje ( K
## [doc0585]       Creoda becomes |king | of Mercia ( accordin
## [doc0586]                      |King | Custennin of Dumnoni
## [doc0586]              April – |King | Liuvigild dies at To
## [doc0586]          Liuvigild , |king | of Visigoths Hermene
## [doc0586]      Theudebert II , |king | of Austrasia ( d. ) 
## [doc0586] hun Hir ap Maelgwn , |king | of Gwynedd Zhu Manyu
## [doc0587] is father Æscwine as |king | of Essex ( approxima
## [doc0587]  d. ) Theuderic II , |king | of Austrasia ( d. ) 
## [doc0587] h princess Æscwine , |king | of Essex ( approxima
## [doc0587]                      |King | Reccared I renounces
## [doc0587]                  [ ] |King | Guntram sends envoys
## [doc0588] hop and saint Ælla , |king | of Deira ( approxima
## [doc0588] s his father Ælla as |king | of Deira in Northern
## [doc0588] te date ) Suintila , |king | of Visigoths ( appro
## [doc0588]                      |King | Hormizd IV begins a 
## [doc0588] nd Burgundians under |King | Guntram and his neph
## [doc0589]                      |King | Guntram sends an exp
## [doc0589]                May – |King | Authari marries     
## [doc0589]                      |King | Childebert          
## [doc0590] s father Guaram I as |king | of Iberia ( Georgia 
## [doc0590] nd Burgundians under |King | Guntram invade Italy
## [doc0590]  father Eormenric as |king | ( bretwalda ) of Ken
## [doc0590] s legitimate Persian |king | , Khosrau II , as a 
## [doc0590] is son Khosrau II as |king | of Persian Empire . 
## [doc0590]     Kadungon becomes |king | of Pandyan Kingdom i
## [doc0590] Urien , as Brythonic |king | of Rheged in Norther
## [doc0590] d. ) Judicaël , high |king | of Domnonée ( approx
## [doc0590] te date ) Eanfrith , |king | of Bernicia ( d. ) H
## [doc0590]             Spring – |King | Hormizd IV dismisses
## [doc0590]          September – |King | Authari dies ( possi
## [doc0590]           Guaram I , |king | of Iberia ( Georgia 
## [doc0591] adwallon ap Cadfan , |king | of Gwynedd ( approxi
## [doc0591] II is reinstalled as |king | of Persian Empire . 
## [doc0591]           He becomes |king | of Lombards , on adv
## [doc0592] eawlin is deposed as |king | of West Saxons .    
## [doc0592]  January – Guntram , |king | of Burgundy Faroald 
## [doc0592]            January – |King | Guntram , age , dies
## [doc0592]           He becomes |king | of Wessex ( accordin
## [doc0593]             Creoda , |king | of Mercia ( approxim
## [doc0593] ia succeeds Hussa as |king | of Bernicia ( Scotla
## [doc0593] mad ( d. ) Ceawlin , |king | of Wessex ( approxim
## [doc0593] his father Creoda as |king | of Mercia ( approxim
## [doc0595] aint Childebert II , |king | of Austrasia ( b. ) 
## [doc0595]  Susthitavarman , as |king | of Varman dynasty in
## [doc0595]                      |King | Dynod               
## [doc0595]                      |King | Childebert II dies ;
## [doc0597]               Ceol , |king | of Wessex ( England 
## [doc0597]  his brother Ceol as |king | of Wessex .         
## [doc0597] enainn mac Cairbre , |king | of Uí Maine ( or )  
## [doc0597]   Mangalesha becomes |king | of Chalukya Dynasty 
## [doc0597]                  The |King | 's School is founded
## [doc0597] tria Kirtivarman I , |king | of Chalukya Dynasty 
## [doc0598] Mwynfawr , Brythonic |king | of Hen Ogledd ( The 
## [doc0598]                      |King |
## [doc0598]          Hye becomes |king | of Korean kingdom of
## [doc0598]  Irish poet Wideok , |king | of Baekje ( Korea ) 
## [doc0599]         Beop becomes |king | of Korean kingdom of
## [doc0599] rch of Antioch Hye , |king | of Baekje ( Korea ) 
## [doc0599]      Rædwald becomes |king | ( bretwalda ) of Eas
## [doc0599]                      |King | Khosrau             
## [doc0600]                      |King | Chlothar II of Neust
## [doc0600]                      |King | Agilulf of Lombards 
## [doc0600]           Mu becomes |king | of Korean kingdom of
## [doc0600]        Aedh Buidhe , |king | of Uí Maine ( Irelan
## [doc0600] g to Ynglinga saga , |king | Ingvar of Sweden inv
## [doc0600] Songtsen becomes new |king | of Tibet ( approxima
## [doc0600]      Uatu mac Áedo , |king | of Connacht ( Irelan
## [doc0600]               Beop , |king | of Baekje ( Korea ) 
## [doc0601] ( d. ) Sigebert II , |king | of Austrasia and Bur
## [doc0601] father Reccared I as |king | of Visigoths .      
## [doc0601] of Metz Reccared I , |king | of Visigoths ( b. ) 
## [doc0602]  ( b. ) Nu'man III , |king | of Lakhmids Ariulf ,
## [doc0602]                      |King | Khosrau             
## [doc0602]           Adaloald , |king | of Lombards ( d. )  
## [doc0602] rn Iraq ) , and puts |king | Nu'man III to death 
## [doc0603] attle of Degsastan : |King | Æthelfrith of Northu
## [doc0603]  date ) Dagobert I , |king | of Franks ( d. ) Li 
## [doc0603]                      |King | Agilulf besieges Cre
## [doc0603] ish abbot Liuva II , |king | of Visigoths ( b.   
## [doc0603] Witteric becomes new |king | of Visigoths .      
## [doc0604]  Deira and kills its |king | , Æthelric. [ ]     
## [doc0604]  his father Sledd as |king | of Essex .          
## [doc0604]  Edwin , son of late |king | Æ lla of Deira ( pos
## [doc0604]           Æthelric , |king | of Deira ( approxima
## [doc0604]             Oswald , |king | ( bretwalda ) of Nor
## [doc0604]                      |King | Khosrau             
## [doc0605] ecognizes Agilulf as |king | of Lombards , and si
## [doc0605]                      |King | Æthelfrith annexes n
## [doc0605] ty ( d. ) Sisenand , |king | of Visigoths ( appro
## [doc0605]   Amshuvarma becomes |king | of Licchavi in Nepal
## [doc0606] trymen , and declare |king | orders Protadius ' d
## [doc0606]                      |King | Harsha of Thanesar e
## [doc0606] recorded independent |king | of Bengal .         
## [doc0606] ( Burgundy ) Pybba , |king | of Mercia ( approxim
## [doc0606] rl succeeds Pybba as |king | of Mercia ( English 
## [doc0607]                      |King | Ceolwulf of Wessex f
## [doc0607] ughter of Witteric , |king | of Visigoths .      
## [doc0608] Áedán mac Gabráin as |king | of Dál Riata ( moder
## [doc0608]                      |King | Khosrau             
## [doc0608]       Charibert II , |king | of Aquitaine ( appro
## [doc0610] rbonne , who becomes |king | of Visigoths in Hisp
## [doc0610]                      |King | Witteric is assassin
## [doc0610]           Witteric , |king | of Visigoths        
## [doc0610] mate date ) Ergica , |king | of Visigoths ( appro
## [doc0610] ther Cynan Garwyn as |king | of Powys ( Wales ) .
## [doc0610]                      |King | Theuderic           
## [doc0611]     Cynegils becomes |king | of West Saxons , or 
## [doc0611] te date ) Ceolwulf , |king | of Wessex ( approxim
## [doc0611]                      |King | Khosrau             
## [doc0612] K'ak ' Chan Yopaat , |king | ( ajaw ) of Copán ( 
## [doc0612] succeeds Gundemar as |king | of Visigoths .      
## [doc0612]      Theudebert II , |king | of Austrasia ( b. ) 
## [doc0612]                      |King | Theudebert II is def
## [doc0613] eneral Sigebert II , |king | of Austrasia Theuder
## [doc0613] age , of killing ten |kings| of Franks ( accordin
## [doc0613]                      |King | Theuderic           
## [doc0613]                      |King | Æthelfrith of Northu
## [doc0613] edric ap Custennin , |king | of Dumnonia ( Englan
## [doc0614]            October – |King | Chlothar II promulga
## [doc0614]  Battle of Bampton : |King | Cynegils of Wessex d
## [doc0615] nburga , daughter of |king | Cearl of Mercia ( ac
## [doc0615] glo - Saxons , under |King | Æthelfrith of Northu
## [doc0615] g of Ireland Pybba , |king | of Mercia ( approxim
## [doc0616]                      |King | Rædwald of East Angl
## [doc0616] tember – Javanshir , |king | of Caucasian Albania
## [doc0616]         Æthelberht , |king | ( bretwalda ) of Ken
## [doc0616] er Iago ap Beli , as |king | of Gwynedd ( Wales )
## [doc0616]                      |King | Sæberht of Essex die
## [doc0616] r Agilulf as Lombard |king | of Italy .          
## [doc0616]             Sæbert , |king | of Essex ( approxima
## [doc0616]                      |King | Æthelfrith is killed
## [doc0616] istian Anglo - Saxon |king | , dies in Kent after
## [doc0616]         Nechtan II , |king | of Picts ( approxima
## [doc0616]                      |King |
## [doc0616] ld installs Edwin as |king | of Northumbria , eff
## [doc0617]    Sigeberht becomes |king | of Essex , after his
## [doc0617]             Sexred , |king | of Essex ( approxima
## [doc0617]                      |King | Edwin of Northumbria
## [doc0617]             Sæward , |king | of Essex ( approxima
## [doc0618]  dynasty Yeongyang , |king | of Goguryeo ( Korea 
## [doc0618] ngen mac Áedo Duib , |king | of Munster ( Ireland
## [doc0618]     Namri Songtsen , |king | of Tibet ( approxima
## [doc0619]                      |King | Khosrow             
## [doc0620]                      |King | Khosrau II captures 
## [doc0620] ui dynasty Sisebut , |king | of Visigoths ( or ) 
## [doc0620]                      |King | Pulakeshin          
## [doc0621]       Ardashir III , |king | of Persian Empire ( 
## [doc0621] ynasty Reccared II , |king | of Visigoths Sisebut
## [doc0621] and regent , becomes |king | of Visigothic Kingdo
## [doc0622] olmán mac Cobthaig , |king | of Connacht ( Irelan
## [doc0623] om Austrasians for a |king | of own .            
## [doc0623] erchant , is elected |king | of Slavs in Moravia 
## [doc0623]                  [ ] |King | Clothar             
## [doc0624] ui dynasty Rædwald , |king | of East Anglia ( app
## [doc0624]  The Visigoths under |King | Suintila recapture B
## [doc0624]  father Rædwald , as |king | ( bretwalda ) of ind
## [doc0624] d. ) Yazdegerd III , |king | of Persian Empire ( 
## [doc0624]                      |King | Khosrow             
## [doc0625]                      |King | Edwin of Northumbria
## [doc0625]          Œthelwald , |king | of Deira ( approxima
## [doc0625] bah Cadfan ap Iago , |king | of Gwynedd Kaegi , W
## [doc0625]                      |King | Pulakeshin          
## [doc0625]                      |King | Cadfan of Gwynedd di
## [doc0625] udicaël becomes high |king | of Domnonée ( northe
## [doc0626]         [ ] Summer – |King | Khosrau             
## [doc0626] mate date ) Sexred , |king | of Essex ( approxima
## [doc0626] in - law Adaloald as |king | of Lombards , and af
## [doc0626]                      |King | Cadwallon is defeate
## [doc0626]  Imam ( d. ) Munmu , |king | of Silla ( d. ) Tenj
## [doc0626]                      |King | Edwin of Northumbria
## [doc0626]        Penda becomes |king | of Mercia ( approxim
## [doc0626]           Adaloald , |king | of Lombards ( approx
## [doc0627]                      |King | Eorpwald of East Ang
## [doc0627] nt Cathal mac Áedo , |king | of Cashel ( Ireland 
## [doc0627] a as first Christian |king | in northern England 
## [doc0627] lde , Frankish queen |King | Stephen I of Iberia 
## [doc0627]              April – |King | Edwin of Northumbria
## [doc0627]                      |King | Eorpwald of East Ang
## [doc0628] ruary – Khosrow II , |king | of Persian Empire Ap
## [doc0628] tle of Cirencester : |King | Penda of Mercia defe
## [doc0629] Battle of Fid Eoin : |King | Connad Cerr of Dál R
## [doc0629]      Eochaid Buide , |king | of Dál Riata [ ]    
## [doc0629]                      |King | Chlothar            
## [doc0629] Dagobert I , becomes |king | of Aquitaine ( South
## [doc0629]        Connad Cerr , |king | of Dál Riata ( Scotl
## [doc0629] ( d. ) Chlothar II , |king | of Franks Conall mac
## [doc0630]                      |King | Cadwallon ap Cadfan 
## [doc0630]                      |King | Penda of Mercia besi
## [doc0630]              April – |King | Ardashir III , age ,
## [doc0630]           Ricberht , |king | of East Anglia ( app
## [doc0630]         Shahrbaraz , |king | of Persian Empire Du
## [doc0630]              Yngling |King |
## [doc0630] or ( d. ) Alhfrith , |king | of Deira ( approxima
## [doc0630]                      |King | Ricberht of East Ang
## [doc0630] , daughter of former |king | Khosrow II .        
## [doc0631] idokht ( daughter of |king | Khosrau II ) succeed
## [doc0631]      The Slavs under |King | Samo defeat Austrasi
## [doc0631] inaed mac Luchtren , |king | of Picts Rayhana , s
## [doc0631]                  [ ] |King | Suintila is overthro
## [doc0631]                      |King | Edwin of Northumbria
## [doc0631] Sisenand becomes new |king | of Visigothic Kingdo
## [doc0631]                      |King | Dagobert            
## [doc0632] win of Northumbria , |king | of Deira and Bernici
## [doc0632]              April – |King | Charibert II is assa
## [doc0632]  age , ascends to as |king | ( shah ) of Persian 
## [doc0632] ril – Charibert II , |king | of Aquitaine June – 
## [doc0632] powerful Merovingian |king | in West .           
## [doc0633] s his uncle Edwin as |king | of Deira .          
## [doc0633]                      |King |
## [doc0633]                      |King | Edwin of Northumbria
## [doc0633]          Clovis II , |king | of Neustria and Burg
## [doc0634] m Caliph Cadwallon , |king | of Gwynedd ( Wales )
## [doc0634] rnicia , and becomes |king | of Northumbria .    
## [doc0634]          Sigeberht , |king | of East Anglia ( app
## [doc0634]                      |King | Dagobert            
## [doc0635]           The Breton |king | arrives with gifts ,
## [doc0635]                      |King | Meurig of Glywysing 
## [doc0635] nasty Gartnait III , |king | of Picts Wu Shihuo ,
## [doc0635]      Judicaël , high |king | of Domnonée ( Britta
## [doc0635]                      |King | Gartnait            
## [doc0636] nd scholar Arioald , |king | of Lombards Bahman J
## [doc0636]  succeeds Arioald as |king | of Lombards .       
## [doc0636] te date ) Sisenand , |king | of Visigoths Theodor
## [doc0636] y functions ) may be |king | of Visigothic Kingdo
## [doc0636] ts Cwichelm ( son of |king | Cynegils of Wessex )
## [doc0637]  Congal Cáech , high |king | of Dál nAraidi ( Ire
## [doc0637]                      |King | Songtsän Gampo build
## [doc0637] Battle of Mag Rath : |King | Oswald of Northumbri
## [doc0637]                      |King | Yazdegerd III flees 
## [doc0638]                      |King | Oswald and his North
## [doc0639] lann mac Áedo Duib , |king | of Munster ( Ireland
## [doc0639] er a - year reign as |king | of all Franks , in w
## [doc0639]  age ) , who becomes |king | of Neustria and Burg
## [doc0639] nuary – Dagobert I , |king | of Franks ( b. c. ) 
## [doc0640] ikesari Maravarman , |king | of Pandyan Empire ( 
## [doc0640]                      |King | Chintila dies of nat
## [doc0640]  Muhammed Chintila , |king | of Visigoths ( appro
## [doc0640]                      |King | Eadbald of Kent dies
## [doc0640]            Eadbald , |king | of Kent ( approximat
## [doc0641]                      |King | Bridei              
## [doc0641]    Uija becomes last |king | of Korean kingdom of
## [doc0641]  Italy ) Bridei II , |king | of Picts Emperor Con
## [doc0641] his half - brother , |King | Oswald ( approximate
## [doc0642]      Domnall Brecc , |king | of Dál Riata [ ]    
## [doc0642]             Oswald , |king | of Northumbria Octob
## [doc0642]          Áedo , high |king | of Ireland Flaochad 
## [doc0642]  - brother Oswald as |king | of Bernicia .       
## [doc0642] ttle of Maserfield : |King | Penda of Mercia defe
## [doc0642] king title of rex or |king | of Thuringia .      
## [doc0642]     He is proclaimed |king | by Visigothic nobili
## [doc0642] ueen Pulakeshin II , |king | of Chalukya ( India 
## [doc0643] which is attended by |kings| and of pilgrims .   
## [doc0643]  III , last Sassanid |king | of Persia , flees to
## [doc0643]                      |King | Rothari of Lombards 
## [doc0643]                      |King | Cynegils of Wessex d
## [doc0643] p of Metz Cynegils , |king | of Wessex ( approxim
## [doc0644] Austrasia ) Radulf , |king | of Thuringia ( appro
## [doc0644] Oswine , son of late |king | Osric of Deira , man
## [doc0645]           Æthelred , |king | of Mercia ( approxim
## [doc0645]           Would - be |king | Cadwaladr Fendigaid 
## [doc0645]                      |King | Cenwalh of Wessex is
## [doc0645] He flees to court of |king | Anna of East Anglia 
## [doc0648] apan ( d. ) Redbad , |king | of Frisia ( d. )    
## [doc0648]                      |King |
## [doc0648]                      |King | Cenwalh of Wessex re
## [doc0649] h mac Uatach , Irish |king | of Connacht ( murder
## [doc0649]            January – |King | Chindasuinth , at ur
## [doc0650]   The Mercians under |King | Penda move on East A
## [doc0650]                      |King | Oswiu of Bernicia se
## [doc0650]                      |King | Cloten of Dyfed ( So
## [doc0650] erchar mac Connaid , |king | of Dál Riata ( moder
## [doc0650] date ) Dagobert II , |king | of Austrasia ( appro
## [doc0651]    August – Oswine , |king | of Deira ( England )
## [doc0651]                      |King | Yazdegerd           
## [doc0651] ly ) Yazdegard III , |king | of Sassanid Empire A
## [doc0651]                      |King | Clovis              
## [doc0651]  his uncle Oswine as |king | of Deira , and allie
## [doc0651]                      |King | Oswiu of Bernicia de
## [doc0652] of Ravenna Rothari , |king | of Lombards Muir , W
## [doc0652]                      |King | Penda of Mercia inva
## [doc0652] y his son Rodoald as |king | of Lombards .       
## [doc0652]       Chlothar III , |king | of Neustria and Burg
## [doc0652]                      |King |
## [doc0653]                      |King |
## [doc0653]       Childeric II , |king | of Franks ( approxim
## [doc0653]                      |King | Penda of Mercia secu
## [doc0653]                      |King | Sigeberht I of Essex
## [doc0653] of Ravenna Rodoald , |king | of Lombards Romaric 
## [doc0653] eader Chindasuinth , |king | of Visigoths Marcán 
## [doc0653]                      |King | Rodoald is murdered 
## [doc0653] f Oswiu , is crowned |king | of Picts .          
## [doc0654]                      |King | Penda of Mercia defe
## [doc0654] te ) Theuderic III , |king | of Franks ( d. ) Jan
## [doc0654]  his brother Anna as |king | of East Anglia , and
## [doc0654]               Anna , |king | of East Anglia ( app
## [doc0654]       Muyeol becomes |king | of Korean kingdom of
## [doc0654]                      |King | Anna of East Anglia 
## [doc0654]                      |King | Recceswinth draws up
## [doc0655]                      |King | Vikramaditya        
## [doc0655] tablishes himself as |king | of Mercia , setting 
## [doc0655]          Æthelhere , |king | of East Anglia Novem
## [doc0656] ho makes his own son |king | , and exiles him to 
## [doc0656]          Cynddylan , |king | of Pengwern ( Wales 
## [doc0656]       Sigebert III , |king | of Austrasia ( or ) 
## [doc0656] Tang Dynasty Peada , |king | of Mercia ( Midlands
## [doc0656]           February – |King | Sigebert III of Aust
## [doc0656]                      |King | Oswiu of Northumbria
## [doc0656]  Crundmáel Erbuilc , |king | of Uí Ceinnselaig ( 
## [doc0656] lhfrith , as subject |king | in a united Northumb
## [doc0656]                      |King |
## [doc0657]           Ansprand , |king | of Lombards ( approx
## [doc0657]  , age , who becomes |king | of Neustria and Burg
## [doc0657] Childebert Adopted , |king | ( usurper ) of Austr
## [doc0657]         Talorgan I , |king | of Picts            
## [doc0657] posed by Clovis II , |king | of Neustria .       
## [doc0658]                      |King | Cenwalh and Wessex S
## [doc0658]          Clovis II , |king | of Neustria and Burg
## [doc0658]      Judicael , high |king | of Domnonée Samo , k
## [doc0658] ac Máele Coba , high |king | of Ireland Chu Suili
## [doc0658] ls Wulfhere ( son of |king | Penda ) as ruler of 
## [doc0659] Shia Imam Cædwalla , |king | of Wessex ( approxim
## [doc0660]                      |King | Conall Crandomna of 
## [doc0660]       Sigeberht II , |king | of Essex ( approxima
## [doc0660]                      |King | Cenwalh of Wessex be
## [doc0660]     Swithelm becomes |king | of Essex , with Swit
## [doc0660]                      |King | Sigeberht           
## [doc0660] ignon Sigebert III , |king | of Austrasia ( or ) 
## [doc0660] ) Conall Crandomna , |king | of Dál Riata ( Scotl
## [doc0661]        Æthelwealh as |king | of Sussex , and     
## [doc0661]  Battle of Posbury : |King | Cenwalh of Wessex in
## [doc0661]                      |King | Munmu becomes ruler 
## [doc0661]          Aripert I , |king | of Lombards Cenberht
## [doc0661]                      |King | Wulfhere of Mercia a
## [doc0661]                      |King | Chlothar III of Neus
## [doc0661] fwine , Northumbrian |king | of Deira ( k. )     
## [doc0662]                      |King | Swithelm of Essex is
## [doc0662]                      |King | Chlothar III gives A
## [doc0662] Byzantine Godepert , |king | of Lombards Rumwold 
## [doc0662]                      |King |
## [doc0662] riors and proclaimed |king | of Austrasia .      
## [doc0663]                      |King | Oswiu of Northumbria
## [doc0663] date ) Gartnait IV , |king | of Picts ( approxima
## [doc0664]         Æthelwald as |king | of East Anglia .    
## [doc0664]    Synod of Whitby : |King | Oswiu of Northumbria
## [doc0664] July – Eorcenberht , |king | of Kent October – Ce
## [doc0664]                      |King | Ealdwulf succeeds   
## [doc0664]                      |King | Swithelm of Essex di
## [doc0667] The Lombards , under |King | Grimoald I , destroy
## [doc0667]                      |King | Javanshir of Caucasi
## [doc0669]                      |King | Ecgberht of Kent los
## [doc0670]          Javanshir , |king | of Caucasian Albania
## [doc0670] e ) Childebert III , |king | of Franks ( approxim
## [doc0670]           Merewalh , |king | of Magonsæte ( appro
## [doc0670]  son Ælfwine becomes |king | of Deira .          
## [doc0671]     He deposes young |king | , and becomes new ru
## [doc0671]  date ) Grimoald I , |king | of Lombards         
## [doc0671]                      |King | Ecgfrith of Northumb
## [doc0672] ceeds Recceswinth as |king | of Visigoths .      
## [doc0672] ate ) Chilperic II , |king | of Franks ( approxim
## [doc0672]            Cenwalh , |king | of Wessex ( approxim
## [doc0672]                      |King | Cenwalh of Wessex di
## [doc0673] ngart mac Domnaill , |king | of Dál Riata ( Scotl
## [doc0673] ilderic II to become |king | in Neustria and Burg
## [doc0673]                      |King | Domangart mac Domnai
## [doc0673] s daughter Osgyth to |King | Sighere of Essex bre
## [doc0673]                      |King | Frithuwold of Surrey
## [doc0673]                      |King | Chlothar III of Neus
## [doc0673]  ) July – Ecgberht , |king | of Kent August –    
## [doc0673]          September – |King | Wamba of Visigoths p
## [doc0673]               July – |King | Ecgberht I of Kent d
## [doc0673]       Chlothar III , |king | of Neustria and Burg
## [doc0673] ther , becoming sole |king | of Frankish Kingdom 
## [doc0674]                      |King | Ecgfrith of Northumb
## [doc0674]                      |King |
## [doc0674]                      |King | Vikramaditya I of Ch
## [doc0674]              Poppo , |king | ( duke ) of Frisia (
## [doc0675]  III , is proclaimed |king | of Austrasia by Aust
## [doc0675]                      |King | Childeric           
## [doc0675] queen Childeric II , |king | of Franks Germanus o
## [doc0675]                      |King |
## [doc0675]              April – |King |
## [doc0676] ntwine , son of late |king | Cynegils .          
## [doc0676]                      |King |
## [doc0676] ert II , son of late |king | Sigibert III , becom
## [doc0676] eodatus II Æscwine , |king | of Wessex Clovis III
## [doc0676]                      |King |
## [doc0677] e date ) Clovis IV , |King | of Franks ( d. ) Mu<U+1E25>
## [doc0678]            Ælfwine , |king | of Deira ( approxima
## [doc0678]                      |King |
## [doc0678] Merovingian Frankish |king | and son of Theuderic
## [doc0679]                      |King |
## [doc0679] mber – Dagobert II , |king | of Austrasia Ælfwine
## [doc0680]                      |King | Merewalh of Magonsæt
## [doc0680] mad Vikramaditya I , |king | of Chalukya ( India 
## [doc0680]                      |King | Wamba is deposed aft
## [doc0680] anuary – Javanshir , |king | of Caucasian Albania
## [doc0680]                  [ ] |King | Cædwalla of Wessex b
## [doc0680]                      |King | Perctarit makes his 
## [doc0681]                      |King | Ecgfrith of Northumb
## [doc0681]                      |King |
## [doc0681]       Jayavarman I , |king | of Chenla ( Cambodia
## [doc0681]                      |King | Erwig of Visigoths i
## [doc0681]       Sinmun becomes |king | of Korean kingdom of
## [doc0682]         Bridei III , |King | of Picts , campaigns
## [doc0682]                      |King | Ecgfrith requests Be
## [doc0682]                      |King | Erwig of Visigoths c
## [doc0682]          Cadwaladr , |king | of Gwynedd ( Wales )
## [doc0682]             Bojang , |king | of Goguryeo ( Korea 
## [doc0682]  Fáelad mac Colgan , |king | of Connacht ( Irelan
## [doc0683]                      |King |
## [doc0683]   Dúnchad Muirisci , |king | of Connacht ( Irelan
## [doc0683] and abbess Anseung , |king | of Goguryeo ( Korea 
## [doc0683]            Sighere , |king | of Essex Uqba ibn Na
## [doc0684] ( d. ) Adarnase II , |king | of Iberia ( approxim
## [doc0684]                      |King | Ecgfrith of Northumb
## [doc0685]          Hlothhere , |king | of Kent Liu Rengui ,
## [doc0685]                      |King | Centwine of Wessex d
## [doc0685]     May – Ecgfrith , |king | of Northumbria Æthel
## [doc0685] in : The Picts under |King | Bridei III revolt ag
## [doc0685]  and Scottish help ) |king | of Northumbria .    
## [doc0685] ty ( d. ) Pelagius , |king | of Asturias ( approx
## [doc0685]                      |King | Eadric revolts again
## [doc0686]                      |King | Eadric is expelled ,
## [doc0686]                      |King | Cædwalla of Wessex e
## [doc0686]             Andhun , |king | of Sussex Arwald , k
## [doc0686]            Berthun , |king | of Sussex Eadric , k
## [doc0687]   Battle of Tertry : |King | Theuderic III of Neu
## [doc0687]                      |King |
## [doc0687] sty ( d. ) Wittiza , |king | of Visigoths ( appro
## [doc0687]                      |King | Erwig dies after a -
## [doc0687]        His brother , |King | Cædwalla of Wessex ,
## [doc0688]                      |King |
## [doc0688] y ( second cousin of |king | Eadric ) , as king o
## [doc0688]                      |King | Caedwalla of Wessex 
## [doc0688] l Dúin mac Conaill , |king | of Dál Riata ( Scotl
## [doc0688]                      |King | Perctarit of Lombard
## [doc0689] ) April – Cædwalla , |king | of Wessex July –    
## [doc0689] : The Frisians under |King | Radbod are defeated 
## [doc0689] ang Dynasty Alahis , |king | ( usurper ) of Lomba
## [doc0690]  Molwynog ap Idwal , |king | of Gwynedd ( approxi
## [doc0690]                      |King |
## [doc0690] ed , brother of late |king | Eadric of Kent , aft
## [doc0690]             Oswine , |king | of Kent ( approximat
## [doc0691] eallach mac Flainn , |king | of Uí Maine ( Irelan
## [doc0691]                      |King | Aldfrith seizes many
## [doc0691]                      |King | Theuderic III dies a
## [doc0691]      Theuderic III , |king | of Franks ( b. )    
## [doc0692]                      |King |
## [doc0693]          Alfonso I , |king | of Asturias ( approx
## [doc0693]         Bridei III , |king | of Picts Earconwald 
## [doc0693]                      |King |
## [doc0693]  as apparent joint - |kings| :                   
## [doc0693]                      |King |
## [doc0693]             Oshere , |king | of Hwicce ( Mercia )
## [doc0694]                      |King |
## [doc0694]                      |King | Sæbbi of Essex abdic
## [doc0694]           November – |King | Ergica of Visigoths 
## [doc0694]            Coenred , |king | of Dorset ( approxim
## [doc0694] e date ) Clovis IV , |King | of Franks ( b. )    
## [doc0695]          September – |King | Wihtred of Kent , wh
## [doc0695]                      |King | Aldfrith of Northumb
## [doc0695] ler ( ajaw ) Sæbbi , |king | of Kent ( approximat
## [doc0695] ds Clovis IV as sole |king | of Franks .         
## [doc0696] rince Domnall Donn , |king | of Dál Riata ( Scotl
## [doc0697] sty ( d. ) Osred I , |king | of Northumbria ( app
## [doc0697]             Radbod , |king | of Frisians , retrea
## [doc0698]  ua Dúnchado becomes |king | of Dál Riata ( Scotl
## [doc0698]       Dagobert III , |king | of Franks ( d. ) Sha
## [doc0698] llach mac Ferchair , |king | of Dál Riata ( Scotl
## [doc0700]                      |King | Geraint of Dumnonia 
## [doc0700] sh abbot , convinces |kings| to adopt Cáin Adomná
## [doc0700]                      |King |
## [doc0700]                      |King | Cunipert dies after 
## [doc0700]  princess Cunipert , |king | of Lombards Di Renji
## [doc0700] namail ua Dúnchado , |king | of Dál Riata Godeber
## [doc0701] y his son Wittiza as |king | of Visigoths ( appro
## [doc0701]                      |King | Egica dies , possibl
## [doc0701] arian Empire Egica , |king | of Visigoths ( or ) 
## [doc0701] Raginpert , usurping |king | of Lombards Yeon Nam
## [doc0702]           Liutpert , |king | of Lombards Muiredac
## [doc0703] hop of Sens Ergica , |king | of Visigoths ( or ) 
## [doc0703]                 High |King | Loingsech mac Óengus
## [doc0703]                      |King | Aripert II of Lombar
## [doc0703]  mac Óengusso , high |king | of Ireland Thrasimun
## [doc0704] ed ) , a son of late |king | Wulfhere , who becom
## [doc0704] ecember – Aldfrith , |king | of Northumbria ( or 
## [doc0704]           December – |King | Aldfrith of Northumb
## [doc0705]           He becomes |king | at age of nine ; gov
## [doc0705] comes estranged from |kings| Sigeheard and Swæfre
## [doc0705]                      |King | Geraint of Dumnonia 
## [doc0705]                      |King |
## [doc0705] lach mac Rogallaig , |king | of Connacht ( Irelan
## [doc0705] te ) Varaz Trdat I , |king | of Caucasian Albania
## [doc0705] ty ( b. ) Aldfrith , |king | of Northumbria ( or 
## [doc0706] aliph ( d. ) Eoppa , |king | of Wessex ( d. ) Fuj
## [doc0709]  [ ] Ceolred becomes |king | of Mercia , after hi
## [doc0709]  ) Yaxun B'alam IV , |king | of Yaxchilan ( Mexic
## [doc0710]     Roderick becomes |king | of Visigoths , but V
## [doc0710] Sussex fight against |King | Geraint of Dumnonia 
## [doc0710] ikesari Maravarman , |king | of Pandyan Empire ( 
## [doc0710]            Wittiza , |king | of Visigoths ( appro
## [doc0711]              April – |King | Childebert III dies 
## [doc0711]        Seachnasach , |king | of Uí Maine ( Irelan
## [doc0711]                      |King | Aripert II , who usu
## [doc0711] l – Childebert III , |king | of Franks November –
## [doc0712] Cherca mac Fáeláin , |king | of Osraige ( Ireland
## [doc0712] ( b. ) Idwal Iwrch , |king | of Gwynedd ( Wales )
## [doc0712]                      |King | Dae                 
## [doc0712] ( b. or ) Ansprand , |king | of Lombards Aripert 
## [doc0712]           February – |King | Ansprand dies , and 
## [doc0713]  Muhammad Ealdwulf , |king | of East Anglia Huine
## [doc0713]                      |King | Ealdwulf of East Ang
## [doc0714] ( d. ) Pepin Short , |king | of Franks ( d. ) Sep
## [doc0714]                      |King | Radbod forces bishop
## [doc0714] and proclaim Ardo as |king | .                   
## [doc0715] rince Dagobert III , |king | of Franks ( b. )    
## [doc0715]                      |King | Nechtan mac Der-Ilei
## [doc0715] of Childeric II , as |king | of Neustria .       
## [doc0716] taneously , Radbod , |king | ( or duke ) of Frisi
## [doc0716]            Osred I , |king | of Northumbria Qapag
## [doc0716] axon abbot Ceolred , |king | of Mercia Coenred , 
## [doc0716]                  [ ] |King | Osred I of Northumbr
## [doc0717] chtan mac Der-Ilei , |king | of Picts , expels mo
## [doc0717] roclaims Clotaire IV |king | of Austrasia in oppo
## [doc0717]      Childeric III , |king | of Franks ( d. ) Eli
## [doc0717] hes against Radbod , |king | ( or duke ) of Frisi
## [doc0718] layo ) is proclaimed |king | ( caudillo ) , and d
## [doc0718]  - brother , of late |king | Osred I .           
## [doc0718] gun ( d. ) Coenred , |king | of Northumbria Cuthb
## [doc0718]                      |King | Chilperic           
## [doc0718]                      |King | Liutprand of Lombard
## [doc0718]                      |King | Coenred of Northumbr
## [doc0719] mperor Chlothar IV , |king | of Austrasia ( appro
## [doc0719] by Charles Martel as |king | ( roi fainéant ) of 
## [doc0719] mate date ) Radbod , |king | of Frisians Tassilo 
## [doc0719] tel defeats Redbad , |King | of Frisians .       
## [doc0720]                      |King | Ardo is killed , and
## [doc0720] ximate date ) Ardo , |king | of Visigoths ( or ) 
## [doc0720]                  [ ] |King |
## [doc0721]                      |King |
## [doc0721]           February – |King | Chilperic II dies at
## [doc0721] ary – Chilperic II , |king | of Franks May – John
## [doc0721] , daughter of former |king | Theuderic III , and 
## [doc0721] ximate date ) Ardo , |king | of Visigoths ( or ) 
## [doc0722]                      |King |
## [doc0722]                      |King | K'inich Ahkal Mo'   
## [doc0722]           Fruela I , |king | of Asturias ( approx
## [doc0724]  Chan Yopaat becomes |king | ( ajaw ) of Maya cit
## [doc0725]              April – |King | Wihtred of Kent dies
## [doc0725]                      |King | Liutprand puts Corsi
## [doc0725]  ) April – Wihtred , |king | of Kent Ealdbert , p
## [doc0726]                      |King |
## [doc0726] ch ( a son of former |king | Eochaid mac Domangai
## [doc0726] elbaig is deposed as |king | of Dál Riata ( Scotl
## [doc0727] chad mac Brain Mut , |king | of Leinster ( Irelan
## [doc0727]                      |King | Liutprand takes adva
## [doc0728] nchad mac Murchado , |king | of Leinster ( Irelan
## [doc0728] - Basri , Arab Ine , |king | of Wessex ( approxim
## [doc0728]                      |King | Liutprand of Lombard
## [doc0728] omnall mac Cellaig , |king | of Connacht ( Irelan
## [doc0729]                      |King | Osric of Northumbria
## [doc0729] ( d. ) May – Osric , |king | of Northumbria Ecgbe
## [doc0730] ynasty ( d. ) Offa , |king | of Mercia ( approxim
## [doc0730]                      |King | Liutprand contracts 
## [doc0730] lbach mac Ferchair , |king | of Dál Riata Tiberiu
## [doc0731]                      |King | Ceolwulf of Northumb
## [doc0731]                      |King |
## [doc0732]         [ ] Autumn – |King | Ceolwulf of Northumb
## [doc0732] chtan mac Der-Ilei , |king | of Picts [ ]        
## [doc0733] ochaid mac Echdach , |king | of Dál Riata ( moder
## [doc0734] n army is beaten and |King | Poppo is killed .   
## [doc0735] ) besiege Pelagius , |king | of Asturias , in upp
## [doc0735] thal mac Muiredaig , |king | of Connacht ( Irelan
## [doc0735]                  [ ] |King | Liutprand of Lombard
## [doc0735] lach mac Fáelchair , |king | of Osraige ( Ireland
## [doc0736]                      |King | Óengus I of Picts in
## [doc0736] ch mac Ainbcellaig , |king | of Dál Riata Yamabe 
## [doc0736]                      |King | Æthelbald of Mercia 
## [doc0736] med Rex Britanniae ( |king | of Britain ) . [ ] [
## [doc0737]                 Mu , |king | of Balhae ( Korea ) 
## [doc0737]                      |King | Ceolwulf of Northumb
## [doc0737]       Theuderic IV , |king | of Franks Dragon Bal
## [doc0737]                      |King | Pelagius of Asturias
## [doc0737] of Venice Pelagius , |king | of Asturias ( Spain 
## [doc0737] th of Theuderic IV , |king | of Franks , is left 
## [doc0737]                      |King | Ongendus of Danes re
## [doc0738] áelán mac Murchado , |king | of Leinster Maslama 
## [doc0738]    Áed mac Colggen , |king | of Uí Cheinnselaig (
## [doc0738]                      |King | Swæfberht of Essex d
## [doc0738]  mac Fithcheallach , |king | of Uí Maine ( Irelan
## [doc0739]  missionary Favila , |king | of Asturias ( Spain 
## [doc0739]                      |King | Favila of Asturias d
## [doc0740]                      |King |
## [doc0740] son of late usurping |king | Eadwulf I . [ ] [ ] 
## [doc0740] t Rhain ap Cadwgan , |king | of Dyfed and Brychei
## [doc0740]                      |King | Eadberht of Northumb
## [doc0740]                      |King |
## [doc0740]  Wessex Æthelheard , |king | of Wessex Æthelwold 
## [doc0740]                      |King | Liutprand of Lombard
## [doc0740]           Aurelius , |king | of Asturias ( approx
## [doc0741] gdom has had no true |king | since death of Theud
## [doc0742] athal mac Finguine , |king | of Munster ( Ireland
## [doc0742]                      |King | Liutprand of Lombard
## [doc0742]        Charlemagne , |king | and emperor of Frank
## [doc0742] lb mac Indrechtaig , |king | of Connacht ( Irelan
## [doc0743]                      |King | Æthelbald of Mercia 
## [doc0743]  as last Merovingian |king | , ( until his death 
## [doc0744] njo and captures its |king | , Yax Mayuy Chan Cha
## [doc0744]                      |King | Liutprand of Lombard
## [doc0744]  duke of Friuli ) as |king | of Lombards , who ma
## [doc0744] se poet Hildeprand , |king | of Lombards Huoching
## [doc0745]  Cathal Maenmaighe , |king | of Uí Maine ( Irelan
## [doc0746]                      |King | Ratchis codifies Lom
## [doc0746] d , grandson of late |king | Sigeheard .         
## [doc0746]                      |King | Saelred of Essex die
## [doc0746]            Saelred , |king | of Essex            
## [doc0746] imalayas ) , to cure |king | of Bumthang ( approx
## [doc0747] date ) Charlemagne , |king | and emperor of Frank
## [doc0748]                      |King | Æthelbert II of Kent
## [doc0748] date ) Charlemagne , |king | and emperor of Frank
## [doc0748] tach mac Dungalaig , |king | of Brega ( Ireland )
## [doc0748] sh abbot Eadbert I , |king | of Kent ( approximat
## [doc0749] other , Ratchis , as |king | of Lombards and marr
## [doc0749]                      |King | Ælfwald of East Angl
## [doc0749] ilello hui Daimine , |king | of Uí Maine ( Irelan
## [doc0749]                      |King | Ratchis of Lombards 
## [doc0749]                      |King | Æthelbald of Mercia 
## [doc0749]                      |King |
## [doc0749] and priest Ælfwald , |king | of East Anglia Abdal
## [doc0750] o Róin , Dál Fiatach |king | of Ulaid Burchard , 
## [doc0750]                      |King | Alfonso I of Asturia
## [doc0750]                      |King | Eadberht does in ord
## [doc0750] hclyde Britons under |King | Teudebur defeat Prin
## [doc0750] e date ) Bermudo I , |king | of Asturias ( approx
## [doc0750] htach mac Dluthach , |king | of Uí Maine ( Irelan
## [doc0750]                      |King | Eadberht of Northumb
## [doc0751] proclaims himself as |king | of Franks with suppo
## [doc0751] rgus mac Fogartaig , |king | of Brega ( Ireland )
## [doc0751] ces last Merovingian |king | Childeric III to ret
## [doc0751]  June – Carloman I , |king | of Franks ( d. ) Ada
## [doc0751]                  [ ] |King | Aistulf of Lombards 
## [doc0752]  joint invasion , by |kings| Óengus I of Picts an
## [doc0752]                      |King | Pepin III ( Short ) 
## [doc0752]           Teudebur , |king | of Alt Clut ( Scotla
## [doc0752] un B'alam IV becomes |king | ( ajaw ) of Maya cit
## [doc0752]  Battle of Burford : |King | Cuthred of Wessex cl
## [doc0752]                  [ ] |King | Teudebur of Alt Clut
## [doc0754] pin III ( Short ) as |king | of Franks , at Basil
## [doc0754] te ) Childeric III , |king | of Franks ( approxim
## [doc0755]  Elisedd ap Gwylog , |king | of Powys ( Wales ) S
## [doc0756] ded by Desiderius as |king | of Lombards .       
## [doc0756] orggus mac Cellaig , |king | of Connacht ( Irelan
## [doc0756] , duke of Friuli and |king | of Lombards Cuthred 
## [doc0756]                      |King | Aistulf of Lombards 
## [doc0756] f Northumbria attack |King | Dumnagual III of Str
## [doc0756]                      |King | Cuthred of Wessex di
## [doc0757]                      |King | Sigeberht of Wessex 
## [doc0757] c Church Æthelbald , |king | of Mercia Alfonso I 
## [doc0757] official Sigeberht , |king | of Wessex Suibhne of
## [doc0757]                      |King |
## [doc0757]                      |King | Alfonso I ( Catholic
## [doc0758] asty ( d. ) Beorna , |king | of East Anglia ( app
## [doc0758] igeric , son of late |king | Saelred ( see ) .   
## [doc0758]                      |King | Beorna of East Angli
## [doc0758]                      |King | Desiderius defeats h
## [doc0758]                      |King | Swithred of Essex di
## [doc0758]                      |King | Cynewulf of Wessex r
## [doc0758] g Dynasty Swithred , |king | of Essex            
## [doc0758]            Hyegong , |king | of Silla ( Korea ) (
## [doc0758]                      |King | Eadberht of Northumb
## [doc0758] , descendant of late |king | Rædwald , apparently
## [doc0759]             Oswulf , |king | of Northumbria Edbur
## [doc0759]               July – |King | Oswulf of Northumbri
## [doc0759]         Alfonso II , |king | of Asturias ( d. ) A
## [doc0759] egicide , is crowned |king | of Norhumbria .     
## [doc0759] a descendant of late |king | Oswine of Deira .   
## [doc0760]             Frankish |King | Pepin III ( Short ) 
## [doc0760]      Dumnagual III , |king | of Alt Clut ( Scotla
## [doc0760] edach mac Murchado , |king | of Leinster ( Irelan
## [doc0761]           Óengus I , |king | of Picts [ ]        
## [doc0761]  brother Óengus I as |king | of Picts ( modern Sc
## [doc0761] nngal mac Laidcnén , |king | of Uí Ceinnselaig ( 
## [doc0761]                      |King | Æthelwald Moll of No
## [doc0762]                      |King |
## [doc0762]                      |King |
## [doc0762]         Æthelred I , |king | of Northumbria ( d. 
## [doc0763]                      |King | Pepin III ( Short ) 
## [doc0763] cceeds Bridei V , as |king | of Picts ( modern Sc
## [doc0763] f Ireland Bridei V , |king | of Picts Fang Guan ,
## [doc0764]                      |King | Offa of Mercia conqu
## [doc0764] , but allows a local |king | , Heaberht , to rule
## [doc0765] g Dynasty Ceolwulf , |king | of Northumbria Domna
## [doc0765] stant cousin of late |king | Oswulf .            
## [doc0765] se poet Gyeongdeok , |king | of Silla ( Korea )  
## [doc0765]                      |King |
## [doc0765]                      |King | Pepin III ( Short ) 
## [doc0766] on mac Con Congalt , |king | of Mide ( Ireland ) 
## [doc0767]   The Franks , under |King | Pepin III ( Short ) 
## [doc0767]       Aedh Ailghin , |king | of Uí Maine ( Irelan
## [doc0768] Fruela I ( Cruel ) , |King | of Asturias , is ass
## [doc0768]                      |King | Alhred of Northumbri
## [doc0768]          September – |King | Pepin III ( Short ) 
## [doc0768]           Fruela I , |king | of Asturias Li Huaix
## [doc0768]  August – Eadberht , |king | of Northumbria Septe
## [doc0769] asty ( d. ) Egbert , |king | of Wessex ( or )    
## [doc0769] bhar mac Cumasgach , |king | of Uí Fiachrach Aidh
## [doc0769]                      |King | Charlemagne ( Charle
## [doc0770] m Snáma mac Flainn , |king | of Osraige ( Ireland
## [doc0770]                      |King | Alhred of Northumbri
## [doc0770] nnselach mac Brain , |king | of Uí Ceinnselaig ( 
## [doc0770]                      |King | Charlemagne signs a 
## [doc0771]                      |King | Offa of Mercia defea
## [doc0771]           December – |King | Carloman I , younges
## [doc0772]                      |King | Desiderius of Lombar
## [doc0772] Dúngal mac Cellaig , |king | of Osraige ( Ireland
## [doc0772]         In England , |King | Offa of Mercia attem
## [doc0772]                      |King |
## [doc0772] Dúngal mac Cellaig , |king | of Osraige ( Ireland
## [doc0773]                      |King | Khongtekcha of Manip
## [doc0773]             Summer – |King | Charlemagne and his 
## [doc0773]                      |King | Alhred of Northumbri
## [doc0773] othaid mac Cathail , |king | of Connacht ( Irelan
## [doc0773]                      |King | Desiderius remains i
## [doc0773] ochfael ap Elisedd , |king | of Powys ( Wales )  
## [doc0773]        Khongtekcha , |king | of Manipur ( India )
## [doc0774]                      |King | Desiderius surrender
## [doc0774]                      |King | Offa of Mercia subdu
## [doc0774] er ( b. ) Aurelius , |king | of Asturias ( Spain 
## [doc0774] ar - old son of late |king | Æthelwald Moll .    
## [doc0774]                      |King | Charlemagne conquers
## [doc0775] e unknown Ciniod I , |king | of Picts Fujiwara no
## [doc0775]                      |King | Dharmapala begins hi
## [doc0775]         Saxon Wars : |King | Charlemagne holds a 
## [doc0776]   Battle of Otford : |King | Egbert II of Kent de
## [doc0776] llach mac Dúnchada , |king | of Leinster ( Irelan
## [doc0776] llach mac Dúnchada , |king | of Leinster ( Irelan
## [doc0776] on of former Lombard |king | Desiderius .        
## [doc0777] ithrí mac Domnaill , |king | of Connacht ( Irelan
## [doc0777]                      |King |
## [doc0777] ithrí mac Domnaill , |king | of Connacht ( Irelan
## [doc0777]  unknown Heungdeok , |king | of Silla ( Korea ) (
## [doc0777] n ( d. ) Heungdeok , |king | of Silla ( Korea ) (
## [doc0778]  Eterscél mac Áeda , |king | of Uí Cheinnselaig (
## [doc0778] ( d. ) Louis Pious , |king | of Franks ( d. ) Rot
## [doc0779] ttle of Bensington : |King | Offa of Mercia defea
## [doc0779]         Saxon Wars : |King | Charlemagne assemble
## [doc0779] f Fulda Æthelred I , |king | of East Anglia ( app
## [doc0780]                      |King |
## [doc0780]         Saxon Wars : |King |
## [doc0780]                      |King |
## [doc0780]            Hyegong , |king | of Silla ( Korea ) (
## [doc0780] nchadh ua Daimhine , |king | of Uí Maine ( Irelan
## [doc0781] harles I is anointed |king | of Aquitaine , and L
## [doc0781]                      |King | Charlemagne has his 
## [doc0781] ( approximate date ) |King | Fergus mac Echdach o
## [doc0782] onall mac Fidhghal , |king | of Uí Maine ( Irelan
## [doc0782]                      |King |
## [doc0783] gitimate son of late |king | Alfonso I , usurps a
## [doc0783]               Silo , |king | of Asturias ( Spain 
## [doc0784]                      |King |
## [doc0785]        Talorgan II , |king | of Picts Tatzates , 
## [doc0785]         Saxon Wars : |King |
## [doc0785]                      |King | Offa of Mercia re-as
## [doc0785] uaidrí mac Fáeláin , |king | of Leinster ( Irelan
## [doc0785]  Tiliw Chan Yopaat , |king | of Quiriguá ( Guatem
## [doc0785] ( d. ) Harald Klak , |king | of Denmark ( approxi
## [doc0785]           Seondeok , |king | of Silla ( Korea )  
## [doc0785] l Dúin mac Fergusa , |king | of Brega ( Ireland )
## [doc0786] of Wessex Cynewulf , |king | of Wessex Desiderius
## [doc0786] rd , brother of late |king | Sigeberht , ambushes
## [doc0786]  , who later becomes |king | of Kent .           
## [doc0786] Tipraiti mac Taidg , |king | of Connacht ( Irelan
## [doc0786] cognise Cyneheard as |king | .                   
## [doc0786] stant nephew of late |king | Ine , named Egbert ,
## [doc0786]                      |King | Charles Younger , so
## [doc0787] own his son Ecgfrith |king | of Mercia at Brixwor
## [doc0788] tember – Ælfwald I , |king | of Northumbria Abd a
## [doc0788]                      |King | Mauregatus of Asturi
## [doc0788]                      |King | Charlemagne conquers
## [doc0788] on of former Lombard |king | Desiderius , invade 
## [doc0788]  and ( d. ) Aejang , |king | of Silla ( Korea )  
## [doc0789] hnae mac Áedo Róin , |king | of Ulaid ( Ireland )
## [doc0789]                      |King | Beorhtric of Wessex 
## [doc0789]                      |King | Charlemagne crosses 
## [doc0789] ne I is installed as |king | of Picts .          
## [doc0789]                      |King | Pepin of Italy conqu
## [doc0789] Spoleto Mauregatus , |king | of Asturias ( or ) M
## [doc0790] icerius palatii ) of |King | Charlemagne , is mad
## [doc0790] ) Cyngen ap Cadell , |king | of Powys ( Wales ) F
## [doc0790]                      |King |
## [doc0790] er ( d. ) Ramiro I , |king | of Asturias ( approx
## [doc0790]                      |King | Offa of Mercia takes
## [doc0790]                      |King |
## [doc0791] o II , son of former |king | Fruela I , becomes r
## [doc0791]                      |King | Charlemagne assemble
## [doc0791] er his son Pepin , ( |king | of Lombards ) invade
## [doc0791] Artgal mac Cathail , |king | of Connacht ( Irelan
## [doc0791] ria , sons of former |king | Ælfwald I , are pers
## [doc0792] umbria tempts exiled |king | Osred II back to his
## [doc0792]           Osred II , |king | of Northumbria      
## [doc0792] Cináed mac Artgail , |king | of Connacht ( Irelan
## [doc0793]                      |King | Charlemagne orders a
## [doc0793]                  [ ] |King | Offa of Mercia found
## [doc0794]                      |King | Charlemagne abandons
## [doc0794] ay – Æthelberht II , |king | of East Anglia Augus
## [doc0794]                      |King | Louis I ( son of Cha
## [doc0794] uncil of Frankfurt : |King | Charlemagne calls fo
## [doc0794]                May – |King |
## [doc0795] cess Bran Ardchenn , |king | of Leinster ( Irelan
## [doc0795]                      |King | Offa of Mercia recei
## [doc0795]          Æthelwulf , |king | of Wessex ( approxim
## [doc0795]                      |King | Charlemagne leads a 
## [doc0795]          Lothair I , |king | and emperor of Frank
## [doc0795]     Quarrels between |kings| Cynan Dindaethwy and
## [doc0796] April – Æthelred I , |king | of Northumbria June 
## [doc0796]              April – |King |
## [doc0796]                  [ ] |King | Charlemagne organize
## [doc0796]        July – Offa , |king | of Mercia ( b. ) Aug
## [doc0796]  , Eardwulf , as new |king | .                   
## [doc0796]                      |King | Offa of Mercia and C
## [doc0796] ld proclaims himself |king | of East Anglia , but
## [doc0797]                      |King | Caradog ap Meirion o
## [doc0797]                      |King | Charlemagne issues C
## [doc0797]                      |King |
## [doc0797]   Bernard of Italy , |king | of Lombards ( d. ) I
## [doc0798]           Wonseong , |king | of Silla ( Korea )  
## [doc0798]                      |King | Charles Younger , a 
## [doc0798]                      |King | Coenwulf of Mercia i
## [doc0798] attle of Bornhöved : |King | Charlemagne forms an
## [doc0798] Caradog ap Meirion , |king | of Gwynedd ( or )   
## [doc0798]                      |King | Alfonso II of Asturi
## [doc0798]                      |King | Eardwulf of Northumb
## [doc0798]  his friend , exiled |king | Osbald of Northumbri
## [doc0798]                      |King | Sigeric             
## [doc0799]                      |King | Eardwulf of Northumb
## [doc0799] monk ( b. ) Osbald , |king | of Northumbria      
## [doc0799]               Former |king | Osbald dies as an ab
## [doc0800] arlemagne Vatsraja , |king | of Gurjara - Pratiha
## [doc0800]                      |King |
## [doc0800] mber – Charlemagne , |king | of Franks , is crown
## [doc0800] e ) Amoghavarsha I , |king | of Rashtrakuta ( Ind
## [doc0800]                      |King | Eardwulf of Northumb
## [doc0800] Ailill mac Fergusa , |king | of South Brega ( Ire
## [doc0801]              April – |King | Louis Pious , son of
## [doc0801]                      |King | Eardwulf of Northumb
## [doc0801]  grant by Coenwulf , |king | of Mercia was part o
## [doc0802]                      |King | Beorhtric of Wessex 
## [doc0802] d is accepted as new |king | . [ ]               
## [doc0802]  general Beorhtric , |king | of Wessex Domitian ,
## [doc0802] avartin ) , or god - |king | ( devaraja ) , under
## [doc0804] ero and Scandinavian |King | .                   
## [doc0805] ernach mac Fergusa , |king | of South Brega ( Ire
## [doc0805]                      |King | Egbert of Wessex for
## [doc0805]   García Íñiguez I , |king | of Pamplona ( approx
## [doc0806]                      |King | Eardwulf of Northumb
## [doc0806] te date ) Ralpacan , |king | of Tibet ( approxima
## [doc0807] g Conall mac Taidg , |king | of Picts ( approxima
## [doc0807]           II becomes |king | of Sri Lanka , and m
## [doc0807]        His brother , |King | Coenwulf of Mercia ,
## [doc0807]                      |King | Cuthred of Kent dies
## [doc0808] adell ap Brochfael , |king | of Powys ( modern Wa
## [doc0808] adell ap Brochfael , |king | of Powys ( Wales ) D
## [doc0808]                      |King | Godfred of Danes for
## [doc0808]               Exiled |king | Eardwulf of Northumb
## [doc0808]  date ) Ælfwald II , |king | of Northumbria ( app
## [doc0809] ac Donngaile , Irish |king | Elfodd , Welsh bisho
## [doc0809]               Gang , |king | of Balhae ( Korea ) 
## [doc0809] poet ( b. ) Aejang , |king | of Silla ( b. )     
## [doc0810] ) Kenneth MacAlpin , |king | of Scotland ( d. ) L
## [doc0810]            Godfred , |king | of Danes Ismail ibn 
## [doc0811]                      |King | Hemming of Denmark c
## [doc0812] Domnall mac Ailpín , |king | of Scotland ( d. ) L
## [doc0812] man ( b. ) Hemming , |king | of Denmark Ibrahim I
## [doc0812]              Jeong , |king | of Balhae ( Korea ) 
## [doc0812]                      |King |
## [doc0812] nulo , becomes joint |kings| of Denmark .        
## [doc0812] lann mac Congalaig , |king | of Brega ( Ireland )
## [doc0812]          At death of |king | Hemming of Denmark t
## [doc0813] mber — Louis Pious , |king | of Aquitaine ( and o
## [doc0814] son Louis Pious , as |king | of Frankish Empire .
## [doc0814] t ( b. ) Reginfrid , |King | of Denmark Sugano no
## [doc0814] uary – Charlemagne , |king | and emperor of Frank
## [doc0815]                      |King | Egbert of Wessex rav
## [doc0815] ius mac Tommaltaig , |king | of Connacht ( Irelan
## [doc0816]                      |King |
## [doc0816]                      |King | Hywel of Gwynedd is 
## [doc0816]            October – |King | Louis Pious ( son of
## [doc0816] s Cynan Dindaethwy , |king | of Gwynedd ( Wales )
## [doc0817]  son , is proclaimed |king | of Aquitaine , and r
## [doc0817] ate date ) Pyinbya , |king | of Burma ( d. ) Janu
## [doc0818] – Bernard of Italy , |king | of Lombards ( b. )  
## [doc0818] rman , chieftain and |king | of Brittany Muiredac
## [doc0818] nach mac Congalaig , |king | of Brega ( Ireland )
## [doc0818]              April – |King | Bernard of Italy , i
## [doc0819] rlord Áed Oirdnide , |king | of Ailech ( Ireland 
## [doc0819] irell mac Fiachnai , |king | of Ulaid ( Ireland )
## [doc0820]  d. ) Rhodri Great , |king | of Gwynedd ( Wales )
## [doc0820]  Ashot I ( Great ) , |king | of Armenia ( approxi
## [doc0820] hgal mac Donngaile , |king | of Munster Tutu Chen
## [doc0820] santín mac Fergusa , |king | of Picts [ ]        
## [doc0821]                      |King | Coenwulf of Mercia d
## [doc0821] r ( or ) Ordo ño I , |king | of Asturias ( approx
## [doc0821]  Artrí mac Cathail , |king | of Munster ( Ireland
## [doc0821] f Croatia Coenwulf , |king | of Mercia Egbert , b
## [doc0822]                      |King | Ceolwulf I of Mercia
## [doc0823] Tuscany Ceolwulf I , |king | of Mercia ( approxim
## [doc0823] pin II ( Younger ) , |king | of Aquitaine Adeloch
## [doc0823]                      |King | Ceolwulf I of Mercia
## [doc0823] une – Charles Bald , |king | of Franks ( d. ) [ ]
## [doc0825]    Hywel ap Rhodri , |king | of Gwynedd ( Wales )
## [doc0825] Battle of Ellandun : |King | Egbert of Wessex def
## [doc0825] te date ) Louis II , |king | of Italy and Holy Ro
## [doc0825] essail mac Ailillo , |king | of Ulaid ( Ireland )
## [doc0825]                      |King | Hywel ap Rhodri of G
## [doc0826]          Beornwulf , |king | of Mercia Fujiwara n
## [doc0826]                      |King | Harald Klak of Denma
## [doc0826]  out its pro-Mercian |king | Baldred .           
## [doc0826]                      |King | Beornwulf of Mercia 
## [doc0827] ant cousin ) of late |king | Ceolwulf I 's daught
## [doc0827] poet ( or ) Ludeca , |king | of Mercia Wu Chongyi
## [doc0827] tablishes himself as |king | of East Anglia , aft
## [doc0828] f Bavaria , Frankish |king | ( or )              
## [doc0829]                      |King | Egbert of Wessex inv
## [doc0829] t request of Swedish |king | Björn at Haugi .    
## [doc0829] Cináed mac Mugróin , |king | of Uí Failghe Cui Zh
## [doc0829] edach mac Ruadrach , |king | of Leinster ' Umayr 
## [doc0829] alfdan Black becomes |king | of Agder ( modern No
## [doc0830] f Bavaria , Frankish |king | ( or )              
## [doc0830] by his son Pepin I , |king | of Aquitaine .      
## [doc0830]                      |King | Wiglaf of Mercia reg
## [doc0830]           Eardwulf , |king | of Northumbria ( app
## [doc0832] gthy siege . [ ] [ ] |King | Pepin               
## [doc0833] ait mac Tommaltaig , |king | of Connacht ( Irelan
## [doc0834]  Cellach mac Brain , |king | of Leinster ( Irelan
## [doc0834]                      |King | Óengus II dies after
## [doc0834] nobleman Óengus II , |king | of Picts Robert III 
## [doc0835]  date ) Lothair II , |king | of Lotharingia ( d. 
## [doc0836] nchester Heungdeok , |king | of Silla ( b. ) Lamb
## [doc0836]                      |King | Egbert of Wessex fig
## [doc0836]         Æthelberht , |king | of Wessex ( approxim
## [doc0837] antinople Drest IX , |king | of Picts Eadwulf , b
## [doc0837]                      |King | Drest IX dies after 
## [doc0838]           Ralpacan , |king | of Tibet ( approxima
## [doc0838] pin I of Aquitaine , |king | of Aquitaine ( b. ) 
## [doc0838]                      |King | Pepin               
## [doc0838]                      |King | Fedelmid mac Crimtha
## [doc0838] ) Bran mac Fáeláin , |king | of Leinster ( Irelan
## [doc0839] óganan mac Óengusa , |King | of Picts , his broth
## [doc0839]                      |King | Louis German , grand
## [doc0839] redach mac Eochada , |king | of Ulaid Pei Du , ch
## [doc0839]  of Kakheti Wiglaf , |king | of Mercia Kirby , D.
## [doc0839] . ) Áed mac Boanta , |king | of Dál Riata Aznar I
## [doc0839]                      |King | Egbert of Wessex die
## [doc0840]            Wigstan , |king | of Mercia ( approxim
## [doc0840] eman of line of late |king | Beornred , named Ber
## [doc0840] les Bald , , becomes |king | of Franks , and join
## [doc0840]                      |King | Wigstan of Mercia , 
## [doc0840] Camerino Czimislav , |king | of Sorbs ( approxima
## [doc0841] d. ) Edmund Martyr , |king | of East Anglia ( app
## [doc0842] úngal mac Fergaile , |king | of Osraige ( Ireland
## [doc0842]  ( b. ) Alfonso II , |king | of Asturias ( b. ) B
## [doc0842]              March – |King | Alfonso II of Asturi
## [doc0842]                      |King | Louis German , ruler
## [doc0842] ro I , son of former |king | Bermudo I , as his s
## [doc0842] leman ( b. ) Uurad , |king | of Picts ( approxima
## [doc0843] Fergus mac Fothaid , |king | of Connacht ( Irelan
## [doc0843]                      |King | Louis German receive
## [doc0843] ographer Bridei VI , |king | of Picts ( Scotland 
## [doc0843]  Dynasty of Scottish |kings| begins to reign .   
## [doc0843]                      |King | Charles Bald receive
## [doc0843]                      |King | Kenneth MacAlpin ( C
## [doc0844] thair I , is crowned |king | at Rome by Pope Serg
## [doc0844]             Summer – |King | Charles Bald struggl
## [doc0844]       Merfyn Frych , |king | of Gwynedd ( Wales )
## [doc0844]                      |King | Æthelred II of North
## [doc0844]  historian Rædwulf , |king | of Northumbria ( app
## [doc0844]                      |King | Merfyn Frych dies af
## [doc0845]  ( b. ) Bridei VII , |king | of Picts Dionysius I
## [doc0845]  date ) Berengar I , |king | of Italy ( approxima
## [doc0845]                      |King | Charles Bald assembl
## [doc0846]          Gyeongmun , |king | of Silla ( Korea ) (
## [doc0846]                      |King | Æthelred II of North
## [doc0846] g Dynasty Mojmir I , |king | of Moravia ( approxi
## [doc0846]                      |King | Louis German grants 
## [doc0846] ( b. ) Dantivarman , |king | of Pallava Empire ( 
## [doc0846]                      |King | Charles Bald recogni
## [doc0847]         Æthelred I , |king | of Wessex ( approxim
## [doc0847] mid mac Crimthainn , |king | of Munster ( Ireland
## [doc0848]                      |King |
## [doc0848] ng Dynasty Drest X , |king | of Picts Guo , empre
## [doc0848]                      |King | Charles Bald sends a
## [doc0848]        Alfonso III , |king | of Asturias ( approx
## [doc0849]       Alfred Great , |king | of Wessex ( d. ) Eri
## [doc0849]                      |King | Pyinbya of Burma fou
## [doc0849] Conaing mac Flainn , |king | of Brega ( Ireland )
## [doc0850]    Harald Fairhair , |king | of Norway ( approxim
## [doc0850]                      |King | Kenneth I ( also cal
## [doc0850] mate date ) Eanred , |king | of Northumbria ( app
## [doc0850] rnulf of Carinthia , |king | of East Frankish Kin
## [doc0850]                      |King | Louis II , eldest so
## [doc0850] pan ( d. ) Smbat I , |king | of Armenia ( approxi
## [doc0850]           February – |King | Ramiro I dies in his
## [doc0851]                      |King | Íñigo Arista of Pamp
## [doc0851] Cináed mac Conaing , |king | of Brega ( Ireland )
## [doc0851] his father Nominoe , |king | of Brittany , dies .
## [doc0851]  acknowledges him as |king | of Brittany .       
## [doc0851] press Íñigo Arista , |king | of Pamplona ( or ) I
## [doc0851]                      |King | Pepin               
## [doc0851] s oath to Charles as |king | of West Frankish Kin
## [doc0851]  ) March – Nominoe , |king | ( or duke ) of Britt
## [doc0851]  García Íñiguez , as |king | of Pamplona ( later 
## [doc0852] a ( b. ) Æthelstan , |king | of Kent ( approximat
## [doc0852]  Chinese warlord and |king | ( d. ) Borivoj      
## [doc0852] date ) Harald Klak , |king | of Denmark ( approxi
## [doc0852] y his son Burgred as |king | of Mercia .         
## [doc0852]                      |King | Æthelstan , eldest s
## [doc0853]                      |King | Olof leads Swedish V
## [doc0853]                      |King | Burgred of Mercia ap
## [doc0853]                      |King | Charles Bald bribes 
## [doc0853]  Chinese warlord and |king | ( approximate date )
## [doc0854]                      |King | Cyngen of Powys make
## [doc0854]   Cadell ap Rhodri , |king | of Seisyllwg ( d. ) 
## [doc0854]                      |King | Æthelweard of East A
## [doc0854]         Æthelweard , |king | of East Anglia Eanbe
## [doc0854]                      |King |
## [doc0855] Lothair I , Frankish |king | and emperor ( b. )  
## [doc0855]             Spring – |King |
## [doc0855] s Cyngen ap Cadell , |king | of Powys ( Wales ) E
## [doc0856]                      |King | Ordo ño I of Asturia
## [doc0856]  Chinese warlord and |king | ( d. ) January – Ald
## [doc0856]                      |King | Alfred and Mercians 
## [doc0856]            October – |King |
## [doc0856]                      |Kings| , Currency and Allia
## [doc0856]                      |King | Charles Bald cedes c
## [doc0857]            Erispoe , |king | ( duke ) of Brittany
## [doc0857] udán mac Muiredaig , |king | of Ulaid ( Ireland )
## [doc0857] nd martyr Dae Ijin , |king | of Balhae ( Korea ) 
## [doc0857]                      |King | Charles Bald acknowl
## [doc0858] anuary – Æthelwulf , |king | of Wessex February –
## [doc0858]            January – |King |
## [doc0858]           February – |King | Kenneth I ( Cináed m
## [doc0858]                      |King | Charles Bald flees t
## [doc0858] cceeds as Donald I , |king | of Alba .           
## [doc0858]             Summer – |King | Louis German , summo
## [doc0859] phate ( d. ) Odo I , |king | of West Frankish Kin
## [doc0859]  Battle of Albelda : |King | Ordo ño I of Asturia
## [doc0859]        Máel Gualae , |king | of Munster ( Ireland
## [doc0860]           Robert I , |king | of West Frankish Kin
## [doc0860]    Sancho Garcés I , |king | of Pamplona ( approx
## [doc0860]                      |King | Charles Bald gives o
## [doc0860]              Odo I , |king | of West Frankish Kin
## [doc0860] e date ) Donald II , |king | of Scotland ( approx
## [doc0860] cember – Æthelbald , |king | of Wessex [ ]       
## [doc0861]           Heongang , |king | of Silla ( approxima
## [doc0861] rite ( b. ) Heonan , |king | of Silla ( Korea )  
## [doc0862]              April – |King | Donald I of Scotland
## [doc0862]        Æthelred II , |king | of Northumbria Al - 
## [doc0862]                      |King | Lothair             
## [doc0862] nd Ruarc mac Brain , |king | of Leinster ( Irelan
## [doc0862] ) April – Donald I , |king | of Scotland ( b. )  
## [doc0863]  Provence , Frankish |king | ( b. )              
## [doc0863]                      |King | Osberht of Northumbr
## [doc0863]                      |King | Louis German suppres
## [doc0863] ) ( d. ) Louis III , |king | of West Frankish Kin
## [doc0863]                      |King | Lothair II receives 
## [doc0863] recán mac Diarmata , |king | of Leinster Umar al 
## [doc0864] y ( d. ) Louis III , |king | of West Frankish Kin
## [doc0864]                      |King | Alfonso III conquers
## [doc0864]                      |King | Louis German invades
## [doc0864]  Pepin is deposed as |king | of Aquitaine , and i
## [doc0864] – Edict of Pistres : |King | Charles Bald orders 
## [doc0864] Lorcán mac Cathail , |king | of Uisneach ( Irelan
## [doc0865]               Viking |king | Ragnar Lodbrok is ca
## [doc0865]             Autumn – |King | Æthelberht of Wessex
## [doc0865] Dynasty Æthelberht , |king | of Wessex Antony You
## [doc0865]                      |King | Lothair II , with ex
## [doc0865]                      |King | Edmund of East Angli
## [doc0865] n ( d. ) Louis III , |king | of West Frankish Kin
## [doc0865]                      |King | Louis German divides
## [doc0866] nt May – Ordo ño I , |king | of Asturias June – R
## [doc0866] ( d. ) Carloman II , |king | of West Frankish Kin
## [doc0866]                May – |King | Ordo ño I , ruler of
## [doc0866] ince Charles Child , |king | of Aquitaine Eberhar
## [doc0867]  , installs a puppet |king | of Northumbria , Ecg
## [doc0867]  d. ) March – Ælla , |king | of Northumbria March
## [doc0867]  ( d. ) Gyeon Hwon , |king | of Hubaekje ( Korea 
## [doc0867] nchad mac Aedacain , |king | of Uisneach ( Irelan
## [doc0867] reaty of Compiègne : |King | Charles Bald cedes C
## [doc0867]  , installs a puppet |king | of Northumbria , Ecg
## [doc0868]                      |King | Charles Bald meets h
## [doc0868]                      |King | Burgred of Mercia ap
## [doc0868]                      |King | Áed Findliath drives
## [doc0869] pan ( d. ) Gung Ye , |king | of Hu Goguryeo ( app
## [doc0869] ugust – Lothair II , |King | of Middle Francia ( 
## [doc0869] aing mac Muiredaig , |king | of Leinster ( Irelan
## [doc0869]      Edmund Martyr , |king | of East Anglia Al - 
## [doc0869]           November – |King | Edmund Martyr and hi
## [doc0870]         Zwentibold , |king | of Lotharingia ( d. 
## [doc0870] Treaty of Meerssen : |King | Louis German forces 
## [doc0870]                      |King | Edmund Martyr is cap
## [doc0870]      Edmund Martyr , |king | of East Anglia ( or 
## [doc0871]               Viking |king | April – Æthelred I ,
## [doc0871]   Alfred succeeds as |king | of Wessex after Æthe
## [doc0871] hmharan mac Brocan , |king | of Aidhne ( Ireland 
## [doc0871]           García I , |king | of León ( approximat
## [doc0871] lill mac Dúnlainge , |king | of Leinster Cathalán
## [doc0871] led by Danish Viking |kings| Halfdan and Bagsecg 
## [doc0871]                      |King | Rhodri Mawr ( Great 
## [doc0872] Rome ( b. ) Artgal , |king | of Strathclyde ( Sco
## [doc0872] lad hua Mugthigirn , |king | of Munster ( Ireland
## [doc0872] mes ( at age ) first |king | of Norway .         
## [doc0872]                      |King | Artgal of Strathclyd
## [doc0872]                      |King | Ecgberht            
## [doc0872]  founder and first ' |king | ' of independent Duc
## [doc0872]                      |King | Burgred pays tribute
## [doc0873]         Ecgberht I , |king | of Northumbria Hunay
## [doc0873] t ( d. ) Ordoño II , |king | of Galicia and León 
## [doc0873] lobar mac Loingsig , |king | of Ulaid ( Ireland )
## [doc0874] nung , first Norse ' |king | ' of Dublin , is kil
## [doc0874]  d. ) Edward Elder , |king | of Wessex ( approxim
## [doc0875]           December – |King | Charles Bald , suppo
## [doc0875]                      |King |
## [doc0875]                      |King | Harald Fairhair of N
## [doc0875]       Sale Ngahkwe , |king | of Burma ( approxima
## [doc0875]                      |King | Jayavarman III found
## [doc0875] te date ) Donyarth , |king | of Cornwall ( approx
## [doc0875] , Eystein Olafsson , |king | of Dublin , is kille
## [doc0875]  August – Louis II , |king | of Italy and Holy Ro
## [doc0875]          Fruela II , |king | of Asturias and León
## [doc0876] er removal of puppet |king | Ricsige of Northumbr
## [doc0876]       Henry Fowler , |king | of Germany ( d. ) Jo
## [doc0876] f Brittany Pyinbya , |king | of Burma ( b. ) Raga
## [doc0876]                      |King |
## [doc0877]  installed as puppet |king | of Mercia .         
## [doc0877]             Autumn – |King | Alfred Great raises 
## [doc0877] rowned by Hincmar as |king | ( not emperor ) of W
## [doc0877]                      |King | Jayavarman III dies 
## [doc0877]                      |King | Charles II ( Bald ) 
## [doc0877] on Louis Stammerer , |king | of Aquitaine , who b
## [doc0877]                      |King | Constantin I is kill
## [doc0877]                      |King | Halfdan             
## [doc0877] te ) Constantine I , |king | of Alba ( Scotland )
## [doc0878]  ( or ) Krishna II , |king | of Rashtrakuta ( Ind
## [doc0878]        Giric becomes |king | of Picts , and allie
## [doc0878] oatia Rhodri Great , |king | of Wales Run , king 
## [doc0878]            January – |King |
## [doc0878]                      |King | Rhodri Great of Gwyn
## [doc0878] nto Amoghavarsha I , |king | of Rashtrakuta ( b. 
## [doc0878]                      |King |
## [doc0878]  together as joint - |kings| .                   
## [doc0878] s Louis Stammerer as |king | of West Frankish Kin
## [doc0878] slim scholar Áed I , |king | of Alba ( Scotland )
## [doc0878]                      |King | Alfonso III of Astur
## [doc0879] anders Ceolwulf II , |king | of Mercia ( approxim
## [doc0879]              April – |King | Louis Stammerer dies
## [doc0879] r – Charles Simple , |king | of West Frankish Kin
## [doc0879] Áed Findliath , high |king | of Ireland Ahmad ibn
## [doc0879]                      |King |
## [doc0879]                      |King | Charles Fat becomes 
## [doc0879]  together as joint - |kings| .                   
## [doc0879] er Guthrum becomes ' |king | ' of East Anglia .  
## [doc0880] aspurakan , Armenian |king | ( approximate date )
## [doc0880]                      |King | Louis III ( Younger 
## [doc0880]                      |King | Harald Fairhair move
## [doc0880]    Hywel ap Cadell , |king | of Deheubarth ( Wale
## [doc0880]  of Lüneburg Heath : |King | Louis III is defeate
## [doc0880]  : Louis Younger and |kings| of West Frankish Kin
## [doc0880] f Bavaria , Frankish |king |
## [doc0881]           Conrad I , |king | of East Frankish Kin
## [doc0881] an Bárid mac Ímair , |king | of Dublin Cui Hang ,
## [doc0881]           February – |King | Charles Fat , son of
## [doc0881]  : The West Frankish |kings| Louis III , and his 
## [doc0881]    Battle of Conwy : |King | Anarawd of Gwynedd (
## [doc0882]            January – |King | Louis Younger dies i
## [doc0882]  Anundsson , Swedish |king | ( approximate date )
## [doc0882]             August – |King | Carloman II becomes 
## [doc0882] ry – Louis Younger , |king | of East Frankish Kin
## [doc0882]                      |King |
## [doc0883]                      |King | Charles Fat travels 
## [doc0883]                      |King | Charles orders Guy t
## [doc0883]                      |King | Carloman            
## [doc0883]                      |King | Charles Fat sends Be
## [doc0883]            Hyogong , |king | of Silla ( Korea ) (
## [doc0883]  Eochocán mac Áedo , |king | of Ulaid ( Ireland )
## [doc0884]             Summer – |King | Carloman            
## [doc0884] nall mac Muirecáin , |king | of Leinster Li Chang
## [doc0884]                      |King | Æthelred II of Merci
## [doc0884] mber – Carloman II , |king | of West Frankish Kin
## [doc0885]                      |King |
## [doc0885] ix months of year in |king | 's service .        
## [doc0885] timate son of former |king | Lothair II , and his
## [doc0885] as overlord of Welsh |kings| .                   
## [doc0885] uiredach mac Brain , |king | of Leinster ( Irelan
## [doc0885] Saône Mihira Bhoja , |king | of Gurjara - Pratiha
## [doc0886] ) Airemón mac Áedo , |king | of Ulaid ( Ireland )
## [doc0886] d territory , to ask |king | of West Francia Char
## [doc0886] chnae mac Ainbítha , |king | of Ulaid Gao Renhou 
## [doc0886]                      |King | Alfred Great of Wess
## [doc0886]                      |King |
## [doc0887] timate son of former |king | Carloman of Bavaria 
## [doc0887] lf II as duke ( or ' |king | ' ) of Aquitaine .  
## [doc0887] ughter Gisela ) , as |king | of Italy .          
## [doc0887]          Jeonggang , |king | of Silla ( modern Ko
## [doc0887] d. ) Qian Yuanguan , |king | of Wuyue ( Ten Kingd
## [doc0888] f Paris , is elected |king | of West Frankish Kin
## [doc0888]                      |King | Arnulf of Carinthia 
## [doc0888] confirms Berengar as |king | of Lombardia , and r
## [doc0888] sthumous son of late |king | Louis Stammerer ) . 
## [doc0888] ball mac Dúnlainge , |king | of Osraige ( Ireland
## [doc0888] ichfrith mac Ímair , |king | of Dublin Tetbert , 
## [doc0888] Áed mac Conchobair , |king | of Connacht ( Irelan
## [doc0889]      Indravarman I , |king | of Khmer Empire ( or
## [doc0889] im of Louis Blind as |king | of Provence , after 
## [doc0889] flæd ( a daughter of |king | Alfred Great ) of Me
## [doc0889] tine I , who becomes |king | of Scotland .       
## [doc0889] to , defeats Lombard |king | Berengar I at Trebbi
## [doc0889] modern Korea ) under |King | Jinseong seeks to co
## [doc0890]  Old , Danish Viking |king | ( approximate date )
## [doc0890]                      |King | Donald II of Scotlan
## [doc0890] ) Rudolph , Frankish |king | ( approximate date )
## [doc0890]                      |King |
## [doc0890]                      |King | Anarawd ap Rhodri of
## [doc0890]          Æthelhelm , |king | of Wessex ( approxim
## [doc0891] ambert is proclaimed |king | of Italy , at capita
## [doc0892] and declares himself |king | . [ ]               
## [doc0892]                      |King |
## [doc0893] ammerer , is crowned |king | of West Frankish Kin
## [doc0893] with army of deposed |king | Berengar I , and pro
## [doc0893]  Bécc mac Airemóin , |king | of Ulaid ( Ireland )
## [doc0893]                      |King | Alfonso III repopula
## [doc0893]                      |King | Yasovarman I ( calle
## [doc0893] date ) Louis Child , |king | of East Frankish Kin
## [doc0894] December – Guy III , |king | of Italy and Holy Ro
## [doc0894]                      |King | Arnulf of Carinthia 
## [doc0894]          Æthelstan , |king | of England ( approxi
## [doc0894] ning up with deposed |king | Berengar I at Verona
## [doc0895]             Autumn – |King | Alfred Great blockad
## [doc0895]                      |King | Anarawd of Gwynedd i
## [doc0895] e ) Sancho Ordóñez , |king | of Galicia ( approxi
## [doc0895] dach mac Eochocáin , |king | of Ulaid ( Ireland )
## [doc0895] y August – Guthred , |king | of Northumbria Octob
## [doc0895]                      |King |
## [doc0895]                      |King | Arnulf of Carinthia 
## [doc0895] crowns Zwentibold as |king | of Lotharingia .    
## [doc0896]           February – |King | Arnulf of Carinthia 
## [doc0896]                      |King |
## [doc0896]  Sitriuc mac Ímair , |king | of Dublin Walfred of
## [doc0896]         [ ] Summer – |King | Alfred Great orders 
## [doc0896] n meantime , deposed |king | Berengar I recovers 
## [doc0897] n ( d. ) Gyeongsun , |king | of Silla ( Korea ) (
## [doc0897]                      |King | Lambert II travels t
## [doc0898]                      |King |
## [doc0898]            January – |King |
## [doc0898]              Odo I , |king | of West Frankish Kin
## [doc0898] gains recognition as |king | of Italy .          
## [doc0899]                      |King | Berengar            
## [doc0899] youngest son of late |king | Æthelred I ) dispute
## [doc0899]  place of West Saxon |kings| , and Christchurch .
## [doc0899] rnulf of Carinthia , |king | of East Frankish Kin
## [doc0899]                      |King | Arnulf of Carinthia 
## [doc0899] le ( d. ) Ma Xifan , |king | of Chu ( d. ) Ma Xis
## [doc0899] nd guardian of young |king | .                   
## [doc0899] ber – Alfred Great , |king | of Wessex ( b. )    
## [doc0899]            October – |King | Alfred Great dies af
## [doc0899] on , Edward Elder as |king | of Wessex .         
## [doc0900] d Great ) is crowned |king | of England at Kingst
## [doc0900] akes Pavia , forcing |king | Berengar I to flee ,
## [doc0900] in Constantine II as |king | of Scotland ; [ ] he
## [doc0900] ugust – Zwentibold , |king | of Lotharingia , is 
## [doc0900] y Merfyn ap Rhodri , |king | of Powys ( approxima
## [doc0900] hild ) is proclaimed |king | of East Frankish Kin
## [doc0900] adg mac Conchobair , |king | of Connacht ( Irelan
## [doc0900] arman Rajasimha II , |king | of Pandya , begins t
## [doc0900] ugust – Zwentibold , |king | of Lotharingia ( b. 
## [doc0900] date ) Berengar II , |king | of Italy ( approxima
## [doc0900] k ( d. ) Ramiro II , |king | of León ( approximat
## [doc0901]           February – |King | Louis III ( Blind ) 
## [doc0901] nd proclaims himself |king | .                   
## [doc0902] ty ( d. ) Ælfweard , |king | of Wessex ( approxim
## [doc0903]                      |King | Berengar I of Italy 
## [doc0903]                      |King | Louis IV ( Child ) p
## [doc0904] mar ua Ímair , Norse |king | of Dublin John Old S
## [doc0904]             Summer – |King | Louis IV ( Child ) i
## [doc0904] e latter 's father , |King | Llywarch ap Hyfaidd 
## [doc0905]  Hyfaidd , nominally |king | of Dyfed , is caught
## [doc0905]   Cadell ap Rhodri , |king | of Seisyllwg ( Wales
## [doc0905]             Spring – |King | Berengar I of Italy 
## [doc0905]  Rhodri ap Hyfaidd , |king | of Dyfed Yahya ibn a
## [doc0906]                      |King | Constantine II of Sc
## [doc0906] e date ) Dae Wihae , |king | of Balhae ( Korea ) 
## [doc0907] is proclaims himself |king | , his power is cente
## [doc0907]                      |King | Edward Elder founds 
## [doc0907] is proclaims himself |king | , his power is cente
## [doc0908]  In an alliance with |kings| Cerball mac Muirecái
## [doc0908] rchén mac Murchadh , |king | of Maigh Seóla ( Ire
## [doc0908] mac mac Cuilennáin , |king | of Munster ( Ireland
## [doc0909]                      |King | Edward Elder and his
## [doc0909] ) Cadell ap Rhodri , |king | of Seisyllwg ( Wales
## [doc0909] achan mac Diarmata , |king | of Uí Maine ( Irelan
## [doc0910] Eowils and Halfdan , |kings| of Northumbria Ingwæ
## [doc0910]             Summer – |King | Alfonso III of Astur
## [doc0910] , García I , becomes |king | of León .           
## [doc0910]                      |King | Edward Elder attacks
## [doc0910] ord Mahendrapala I , |king | of Gurjara - Pratiha
## [doc0911] es III is elected as |king | of Lotharingia .    
## [doc0911]          September — |King | Louis IV ( Child ) ,
## [doc0911] er ( b. ) Louis IV , |king | of East Frankish Kin
## [doc0911] ad I at Forchheim as |king | of East Frankish Kin
## [doc0911]             Autumn – |King | Charles III ( Simple
## [doc0911]        Her brother , |King | Edward Elder , insis
## [doc0912]                      |King | Ordo ño II of Galici
## [doc0912] n nobleman Hyogong , |king | of Silla ( Korea ) (
## [doc0912]            Hyejong , |king | of Goryeo ( Korea ) 
## [doc0912] ate date ) Smbat I , |king | of Armenia ( approxi
## [doc0912] ctober – Rudolph I , |king | of Burgundy ( b. ) N
## [doc0913]                      |King | Edward Elder begins 
## [doc0914] pay tribute to Irish |kings| of Meath and Leinste
## [doc0914] January – García I , |king | of León ( Spain ) Fe
## [doc0914]  ño II , who becomes |king | of Galicia and León 
## [doc0914]        [ ] January – |King | García              
## [doc0915] e Domnall mac Áeda , |king | of Ailech ( Ireland 
## [doc0916]        Flann Sinna , |king | of Meath Anarawd ap 
## [doc0916] d , daughter of late |King | Alfred Great and wid
## [doc0917] ugaire mac Ailella , |king | of Leinster ( Irelan
## [doc0917]                      |King | Ordo ño II of León (
## [doc0917]         Guthrum II , |king | of East Anglia ( Eng
## [doc0917] tablishes himself as |king | , while his kinsman 
## [doc0918]           December – |King | Conrad I , injured a
## [doc0918]  Conrad I , Frankish |king | Gung Ye , king of Hu
## [doc0919] tablishes himself as |king | at York .           
## [doc0919]  Islandbridge : High |King | Niall Glúndub is kil
## [doc0919]           Theinhko , |king | of Pagan dynasty ( d
## [doc0919] ty ( d. ) García I , |king | of Pamplona ( d. )  
## [doc0920]        Gao Baorong , |king | of Nanping ( Ten Kin
## [doc0920]  date ) Ratna Pala , |king | of Kamarupa ( India 
## [doc0921] , Iltäbär ( vassal - |king | under Khazars ) of V
## [doc0921] ll ua Ímair , Viking |king | of Northumbria Richa
## [doc0921]             Summer – |King | Henry I ( Fowler ) d
## [doc0921]  I ( Magnificent ) , |king | of England ( d. ) Ja
## [doc0921] r – Treaty of Bonn : |King | Charles III ( Simple
## [doc0922] Odo , who is crowned |king | of West Frankish Kin
## [doc0922] ún Garcés ( Monk ) , |king | of Pamplona Galindo 
## [doc0923] a ) Harshavarman I , |king | of Angkor ( Cambodia
## [doc0923] uke of Burgundy , as |king | of West Frankish Kin
## [doc0923]                      |King | Robert I is killed ;
## [doc0923] adred ( or Edred ) , |king | of England ( d. ) Fu
## [doc0924] uly – Edward Elder , |king | of Wessex July – Abu
## [doc0924] April – Berengar I , |king | of Italy and Holy Ro
## [doc0924]             Summer – |King | Ordo ño II of Galici
## [doc0924] ndants of Visigothic |king | Wittiza .           
## [doc0924]               July – |King | Edward Elder dies at
## [doc0924]             Spring – |King | Berengar            
## [doc0924] t ( d. ) Gao Baoxu , |king | of Nanping ( Ten Kin
## [doc0924] yaung - u Sawrahan , |king | of Pagan dynasty ( d
## [doc0924]  Chinese warlord and |king | ( b. )              
## [doc0924] nobleman Ordoño II , |king | of Galicia and León 
## [doc0925] atia , is crowned as |king | of Croatia .        
## [doc0925]                      |King | Rudolph II of Burgun
## [doc0925] ancho I is acclaimed |king | of Galicia .        
## [doc0925]             Summer – |King | Fruela              
## [doc0925] amiro ( sons of late |King | Ordoño II ) revolt a
## [doc0925] hal mac Conchobair , |king | of Connacht Fruela I
## [doc0925] ia ( d. ) Conrad I , |king | of Burgundy ( approx
## [doc0925] ecember – Sancho I , |king | of Pamplona December
## [doc0926] undy , be elected as |king | of Italy .          
## [doc0926]  ( d. ) Ordoño III , |king | of León ( approximat
## [doc0926]                      |King | Æthelstan of Wessex 
## [doc0927] not ally with Viking |kings| . [ ]               
## [doc0927]        Wang Yanhan , |king | of Min ( Ten Kingdom
## [doc0927]                      |King | Gyeongae commits sui
## [doc0927] trygg Cáech , Viking |king | of Scandinavian York
## [doc0927] er ( or ) Gyeongae , |king | ( ruler ) of Silla (
## [doc0927]               July – |King | Æthelstan of Wessex 
## [doc0927] laíb Cuarán , Viking |king | of Scandinavian York
## [doc0928] uis Blind , Frankish |king | and Holy Roman Emper
## [doc0928] I ( Blind ) , former |king | of Provence ( Lower 
## [doc0928] cle Jayavarman IV as |king | of Khmer Empire ( mo
## [doc0928] onne in which former |King | Charles III ( Simple
## [doc0928] d. ) Qian Hongzong , |king | of Wuyue ( d. )     
## [doc0928]  Tomislav , duke and |king | of Croatia Wang , em
## [doc0928]                      |King | Rudolph             
## [doc0928]                      |King | Hywel Dda ( Good ) o
## [doc0928]                      |King | Henry I ( Fowler ) s
## [doc0928]  ) Ishanavarman II , |king | of Khmer Empire John
## [doc0928] ust – Qian Hongzuo , |king | of Wuyue ( d. ) Dub 
## [doc0929]     Sancho Ordóñez , |king | of Galicia ( Spain )
## [doc0929] ematician Ashot II , |king | of Armenia ( approxi
## [doc0929]     October – Former |king | Charles III ( Simple
## [doc0929] ptember – Qian Chu , |king | of Wuyue ( d. )     
## [doc0929] ege of Gana : German |king | Henry I ( Fowler ) b
## [doc0929]  Simple ) , Frankish |king | ( b. ) Abu Ali al - 
## [doc0930]  Chinese warlord and |king | ( b. ) Amoghavarsha 
## [doc0931]                      |King | Harald Fairhair of N
## [doc0931]   Hugh of Provence , |king | of Italy , cedes Low
## [doc0931] nesa , an account of |kings| of Asturias and León
## [doc0931] ay – Jimeno Garcés , |king | of Pamplona June –  
## [doc0931]                      |King | Morgan              
## [doc0931] fonso IV and becomes |king | of León ( Northern S
## [doc0931]           Harald I , |king | of Norway ( approxim
## [doc0932] ) Sancho I ( Fat ) , |king | of León ( approximat
## [doc0932]  Chinese warlord and |king | ( b. ) May – Ma Shao
## [doc0932] ugust – Ma Xisheng , |king | of Chu ( b. )       
## [doc0932] r Hugh of Provence , |king | of Italy , after he 
## [doc0933]                      |King | Henry I ( Fowler ) d
## [doc0933] youngest son of late |King | Edward Elder , is dr
## [doc0933]  date ) Alfonso IV , |king | of León and Galicia 
## [doc0933] – Hugh of Provence , |king | of Italy , launches 
## [doc0934]  , Viking leader and |king | of Dublin Li Conghou
## [doc0934] Her son - year - old |King | García Sánchez I bec
## [doc0934]                      |King | Tewdwr of Brycheinio
## [doc0934] od ) , a son of late |King | Harald Fairhair , on
## [doc0934]                      |King | Henry I ( Fowler ) p
## [doc0934] rhair Sale Ngahkwe , |king | of Pagan ( Burma ) U
## [doc0934] akon is installed as |king | of Norway .         
## [doc0935]  Gruffydd ab Owain , |king | of Glywysing ( appro
## [doc0935]                      |King | Gyeon               
## [doc0935]                      |King | Hugh of             
## [doc0935] nd poet Trpimir II , |king | of Croatia ( approxi
## [doc0935]                      |King | Gyeongsun , last rul
## [doc0936] – Hugh of Provence , |king | of Italy , dispatche
## [doc0936] Otto is first German |king | to be crowned in Cha
## [doc0936]                      |King | Æthelstan set border
## [doc0936]       Henry Fowler , |king | of East Frankish Kin
## [doc0936] burg - Bremen visits |king | of Denmark Gorm and 
## [doc0936]          Rudolph I , |king | of West Frankish Kin
## [doc0936]               July – |King | Henry I ( Fowler ) d
## [doc0936] aspurakan , Armenian |king | ( or ) Ibn al - Mugh
## [doc0936] year old son of late |King | Charles Simple , is 
## [doc0936] ugh , whose father , |King | Robert I , was kille
## [doc0937] te date ) David II , |king | of Iberia / Kartli (
## [doc0937]               July – |King | Rudolph II of Burgun
## [doc0937] ngent under Scottish |king | .                   
## [doc0937]                      |King |
## [doc0937]          Gebeachan , |king | of Isles ( Hebrides 
## [doc0937]  ( d . ) Bagrat II , |king | of Iberia and Kartli
## [doc0937]  July – Rudolph II , |king | of Burgundy July –  
## [doc0937] ttle of Brunanburh : |King | Æthelstan defeats a 
## [doc0937]                      |King | Otto I refuses to gi
## [doc0937]                      |King | Hugh of Arles ( king
## [doc0938] r ( d. ) Sancho II , |king | of Navarre ( approxi
## [doc0938]                      |King |
## [doc0939]  Hugh Capet , French |king | and a descendant of 
## [doc0939]          Æthelstan , |king | of England [ ]      
## [doc0939] fter years , becomes |king | of Vietnam .        
## [doc0939]            October – |King | Æthelstan dies at Gl
## [doc0939] blin , is proclaimed |king | of York ( south of N
## [doc0940] wig ( All - Fair ) , |king | of England ( approxi
## [doc0940] elan mac Muiredach , |king | of Leinster ( Irelan
## [doc0941]  , Viking leader and |king | [ ]                 
## [doc0941]        Lothair III , |king | of West Frankish Kin
## [doc0941]   Hugh of Provence , |king | of Italy , leads a f
## [doc0941] ueen Qian Yuanguan , |king | of Wuyue ( b. ) Ruda
## [doc0941] arman IV , Angkorian |king | ( Cambodia ) Muhamma
## [doc0942]          Hywel Dda , |king | of Deheubarth , anne
## [doc0942]         Idwal Foel , |king | of Gwynedd , openly 
## [doc0942]  date ) Idwal Foel , |king | of Gwynedd ( Wales )
## [doc0942] Battle of Fraxinet : |King | Hugh of Provence lau
## [doc0942]                      |King | Edmund              
## [doc0942] Llywelyn ap Merfyn , |king | of Pows , are killed
## [doc0942] s from Norse - Irish |king | Olaf Sigtryggsson . 
## [doc0943] aspurakan , Armenian |king | ( or )              
## [doc0943] chertach mac Néill , |king | of Ailech ( Ireland 
## [doc0943] gar I ( Peaceful ) , |king | of England ( approxi
## [doc0943] chadh mac Murchadh , |king | of Maigh Seóla ( Ire
## [doc0943]                      |King | Edmund I ravages Str
## [doc0944]  Gurjara - Pratihara |king | Ngo Quyen , Vietname
## [doc0944]                  [ ] |King | Edmund              
## [doc0944]  of Aquitanians ' by |king | . [ ]               
## [doc0944] rland to Malcolm I , |king | of ' Picts and Scots
## [doc0944] arman II , Angkorian |king | Li , empress of Min 
## [doc0944]                      |King | Hugh of Provence dis
## [doc0945]            Hyejong , |king | of Goryeo ( Korea ) 
## [doc0945]                      |King | Hugh of Provence lay
## [doc0945] is acclaimed as sole |king | of Lombardia .      
## [doc0945]                      |King | Hywel Dda ( Good ) c
## [doc0945]             Summer – |King | Louis IV ( d' Outrem
## [doc0945]  ) Eric Victorious , |king | of Sweden ( approxim
## [doc0945] nce with Malcolm I ( |king | of ' Picts and Scots
## [doc0945] n Rus ' Krešimir I , |king | of Croatian Kingdom 
## [doc0945]                      |King | Edmund              
## [doc0946]             Summer – |King |
## [doc0946]                May – |King | Edmund I is murdered
## [doc0946] . ) May – Edmund I , |king | of England ( b. )   
## [doc0946] dred ( or Edred ) as |king | of England . [ ]    
## [doc0947] te ) Hugh of Arles , |king | of Italy and Lower B
## [doc0947]                      |King | Otto I cedes Duchy o
## [doc0947]  Raja Raja Chola I , |king | of Chola Kingdom ( d
## [doc0947]       Qian Hongzuo , |king | of Wuyue ( b. )     
## [doc0947]     May – Ma Xifan , |king | of Chu ( Ten Kingdom
## [doc0948]                      |King | Eadred ravages North
## [doc0948]                      |King |
## [doc0948]           February – |King | Qian Hongzong is dep
## [doc0948] mac Gofraid , Viking |king | of Dublin Gormflaith
## [doc0949] e date ) Jeongjong , |king | of Goryeo ( Korea ) 
## [doc0949]                      |King | Miroslav ( or Mirosl
## [doc0949] e date ) Jeongjong , |king | of Goryeo ( Korea ) 
## [doc0950]           November – |King | Lothair II dies at T
## [doc0950] ember – Lothair II , |king | of Italy [ ]        
## [doc0950] Hywel Dda ( Good ) , |king | of Wales Li Jinquan 
## [doc0950]  Berengar is crowned |king | of Italy and impriso
## [doc0950]                      |King | Hywel Dda ( Good ) d
## [doc0950]       The Tu'i Tonga |kings| establish capital at
## [doc0951]  a peace in with new |king | of León , Ordo ño II
## [doc0951] s Cadwgan ab Owain , |king | of Glywysing ( Wales
## [doc0951]                      |King |
## [doc0951] mac Sitriuc , Viking |king | of Dublin ( Ireland 
## [doc0951] nnétig mac Lorcáin , |king | of Tuadmumu ( Irelan
## [doc0951] anuary – Ramiro II , |king | of León and Galicia 
## [doc0951]                      |King | Berengar            
## [doc0952] any Constantine II , |king | of Alba ( Scotland )
## [doc0952]                      |King | Constantine II dies 
## [doc0952] any Constantine II , |king | of Alba ( Scotland )
## [doc0953]  chancellor Abas I , |king | of Bagratuni Dynasty
## [doc0953] atician Bermudo II , |king | of León and Galicia 
## [doc0953] on Rhodri ap Hywel , |king | of Deheubarth ( Wale
## [doc0954] ) , Norwegian Viking |king | Frederick , archbish
## [doc0954]  ( d. ) Malcolm II , |king | of Alba ( Scotland )
## [doc0954] hern Han Malcolm I , |king | of Alba ( Scotland )
## [doc0954]                      |King | Malcolm             
## [doc0954] y of Saint - Remi as |king | of West Frankish Kin
## [doc0954]          September – |King | Louis IV ( d' Outrem
## [doc0954] ptember – Louis IV , |king | of West Frankish Kin
## [doc0954]                  [ ] |King | Eric                
## [doc0955] Battle of Lechfeld : |King | Otto I ( Great ) def
## [doc0955]           November – |King | Eadred ( or Edred ) 
## [doc0955] adred ( or Edred ) , |king | of England ( b. )   
## [doc0955] Kunhsaw Kyaunghpyu , |king | of Pagan dynasty ( d
## [doc0955] ober – Qian Weijun , |king | of Wuyue ( Ten Kingd
## [doc0955] Lombard margrave and |king | of Italy ( approxima
## [doc0956] ugust – Ordoño III , |king | of León [ ]         
## [doc0956] cousin Lothair III , |king | of West Frankish Kin
## [doc0956]                      |King | Ordo ño III dies at 
## [doc0957] ain ) [ ] Arinjaya , |king | of Chola Kingdom ( I
## [doc0957] e unknown Arinjaya , |king | of Chola Kingdom ( I
## [doc0958]                      |King | Ksemagupta dies of a
## [doc0958] hist monk Sumbat I , |king | of Iberia ( Georgia 
## [doc0958] hist monk Sumbat I , |king | of Iberia ( Georgia 
## [doc0958]                  [ ] |King | Berengar            
## [doc0958]           Gorm Old , |king | of Denmark .        
## [doc0958]           Gorm Old , |king | of Denmark .        
## [doc0959] - Ö , Tibetan lama - |king | ( approximate date )
## [doc0959] adwig ( All Fair ) , |king | of England October –
## [doc0959]        His brother , |King |
## [doc0959] nchadh mac Urchadh , |king | of Maigh Seóla ( Ire
## [doc0959]            October – |King | Eadwig dies after a 
## [doc0960] Murchadh mac Aodha , |king | of Uí Maine ( Irelan
## [doc0960]  ) Sweyn Forkbeard , |king | of Denmark and Engla
## [doc0960]         Indra Pala , |king | of Kamarupa ( India 
## [doc0960]  ( or ) Bagrat III , |king | of Abkhazia ( Georgi
## [doc0960]         Ratna Pala , |king | of Kamarupa ( India 
## [doc0960]   Harald Bluetooth , |king | of Denmark , consoli
## [doc0960] hachen Dpalgyimgon , |king | of Mauyul ( Tibet ) 
## [doc0960] bleman Gao Baorong , |king | of Nanping ( Ten Kin
## [doc0961]                      |King | Haakon Good defeats 
## [doc0961] e poet Haakon Good , |king | of Norway Landulf II
## [doc0961] usoleum of Bagratuni |kings| . [ ]               
## [doc0961]                      |King | Ashot III of Armenia
## [doc0961]       ) Ramiro III , |king | of León ( Spain ) ( 
## [doc0962]             Indulf , |king | of Scots and Picts ,
## [doc0962]           February – |King | Otto I ( Great ) is 
## [doc0962] e date ) Gao Baoxu , |king | of Nanping ( China )
## [doc0962] dulf ( Aggressor ) , |king | of Scotland Liu Cong
## [doc0962]          Ordoño IV , |king | of León ( or )      
## [doc0962] ward II ( Martyr ) , |king | of England ( approxi
## [doc0963]  Ordoño IV ( Bad ) , |king | of León ( or ) Rudol
## [doc0963]                      |King | Berengar II ( father
## [doc0963] had mac Cellacháin , |king | of Munster ( Ireland
## [doc0964]             Spring – |King |
## [doc0964] ichleach ua Gadhra , |king | of Gailenga ( Irelan
## [doc0965]             Spring – |King | Lothair III exploits
## [doc0966]             Spring – |King | Lothair III marries 
## [doc0966]           Sa<U+1E43>bhava , |king | of Khotan ( China ) 
## [doc0966] ar II , margrave and |king | of Italy December – 
## [doc0966] red II ( Unready ) , |king | of England ( approxi
## [doc0966] ( d. ) Kenneth III , |king | of Scotland ( approx
## [doc0967] ub mac Maíl Coluim , |king | of Alba ( Scotland )
## [doc0967]   Fergal ua Ruairc , |king | of Connacht ( Irelan
## [doc0967] bbey in Hampshire by |King | Edgar I ( Peaceful )
## [doc0967] leslaw I ( Brave ) , |king | of Poland ( d . )   
## [doc0969] ichael Krešimir II , |king | of Croatia ( House o
## [doc0970] ( d. ) Rudolph III , |king | of Burgundy ( approx
## [doc0970]  ) Constantine III , |king | of Scotland ( approx
## [doc0970] d II ( Greycloak ) , |king | of Norway Hasdai ibn
## [doc0970] ebruary – García I , |king | of Pamplona June – A
## [doc0970] first ( documented ) |king | of Sweden in Uppland
## [doc0971]                      |King | Cuilén ( or Cuilean 
## [doc0971] isor Qian Hongzong , |king | of Wuyue ( approxima
## [doc0971]  He will not be sole |king | until .             
## [doc0971] lén ( or Cuilean ) , |king | of Alba ( Scotland )
## [doc0972] obert II ( Pious ) , |king | of France ( d. ) Abd
## [doc0973] an Cathal mac Tadg , |king | of Connacht ( Irelan
## [doc0973] eaceful ) is crowned |king | during a royal cerem
## [doc0973] Conchobar mac Tadg , |king | of Connacht Geibenna
## [doc0974]                      |King | Edgar               
## [doc0975] ( Wang So ) , Korean |king | ( b. )              
## [doc0975] gar I ( Peaceful ) , |king | of England July – Fu
## [doc0975] d. ) [ ] Stephen I , |king | of Hungary ( approxi
## [doc0975]               July – |King | Edgar I ( Peaceful )
## [doc0975]  alchemist Olof II , |king | of Sweden ( approxim
## [doc0975] t Dyfnwal ab Owain , |king | of Strathclyde Gu Ho
## [doc0976] amain mac Cennétig , |king | of Munster Pietro IV
## [doc0977] gitimate son of late |King | Louis IV ( d' Outrem
## [doc0977]                      |King | Lothair III – who cl
## [doc0977]                      |King | Kenneth II of Scotla
## [doc0977] t III ( Merciful ) , |king | of Armenia Bisutun ,
## [doc0977] Amlaíb mac Illuilb , |king | of Alba ( Scotland )
## [doc0978] mhaltan Ua Clerigh , |king | of Hy Fiachrach ( Ir
## [doc0978] ch – Edward Martyr , |king | of English [ ]      
## [doc0978] nready ) who becomes |king | of England .        
## [doc0978] e date ) Gyeongsun , |king | of Silla ( Korea ) (
## [doc0978] e date ) Gyeongsun , |king | of Silla ( Korea ) (
## [doc0978]              March – |King | Edward II ( Martyr )
## [doc0978]               June – |King | Qian                
## [doc0978] mhaltan Ua Clerigh , |king | of Hy Fiachrach ( Ir
## [doc0979]      Iago ab Idwal , |king | of Gwynedd [ ]      
## [doc0980]                      |King | Harald Bluetooth ord
## [doc0980]     July – Mokjong , |king | of Goryeo ( Korea ) 
## [doc0980]  ) Olof Skötkonung , |king | of Sweden ( approxim
## [doc0981]      Ramiro Garcés , |king | of Viguera ( Spain )
## [doc0982]  al - Dawla , emir ( |king | of kings ) of Buyid 
## [doc0982]                      |King | Harald Bluetooth inv
## [doc0983]                      |King | Harald Bluetooth reb
## [doc0983]      Aed Ua Dubhda , |king | of Uí Fiachrach ( Ir
## [doc0983]  Otto III is elected |king | of Germany and Italy
## [doc0984]                      |King | Ramiro III of León l
## [doc0984] asty Domnall Claen , |king | of Leinster ( Irelan
## [doc0984] pring – German boy - |king | Otto III ( years old
## [doc0985] irgus mac Domnaill , |king | of Uí Maine ( Irelan
## [doc0985] d II ( Bluetooth ) , |king | of Denmark and Norwa
## [doc0985]     Hywel ap Ieuaf , |king | of Gwynedd ( Wales )
## [doc0985]                      |King | Otto III ( - years o
## [doc0985]  June – Ramiro III , |king | of León ( Spain ) ( 
## [doc0985]                      |King | Eric Victorious defe
## [doc0986]              March – |King | Lothair III ( or Lot
## [doc0986] arch – Lothair III , |king | of West Frankish Kin
## [doc0986]                      |King | Harald II ( Bluetoot
## [doc0986] Cadwallon ab Ieuaf , |king | of Gwynedd ( Wales )
## [doc0986] Cadwallon ab Ieuaf , |king | of Gwynedd ( Wales )
## [doc0986] iver after defeating |King | Jayapala .          
## [doc0987] eman May – Louis V , |king | of West Frankish Kin
## [doc0987] ter last Carolingian |king | of West Francia , Lo
## [doc0988] ( Idwal ab Idwal ) , |king | of Gwynedd ( Wales )
## [doc0988] nger brother of late |King | Lothair of France ) 
## [doc0988]                      |King | Bermudo II escapes t
## [doc0988]          Stephen I , |king | of Croatia ( approxi
## [doc0988] October – Qian Chu , |king | of Wuyue ( d. ) Bagr
## [doc0988]                      |King |
## [doc0989]          Kiurike I , |king | of Tashir - Dzoraget
## [doc0989]                      |King | Hugh I ( Capet ) , d
## [doc0989] iairn , Norse - Gael |king | of Dublin ( approxim
## [doc0990]         Mieszko II , |king | of Poland ( approxim
## [doc0990] ring reign of Danish |king | Sweyn Forkbeard ( ap
## [doc0990] nd II ( Ironside ) , |king | of England ( d. )   
## [doc0991] tesman Qian Weijun , |king | of Wuyue ( Ten Kingd
## [doc0991] pher Ashot - Sahak , |king | of Vaspurakan ( Arme
## [doc0992] August – Hyeonjong , |king | of Goryeo ( Korea ) 
## [doc0993] apua Maelcairearda , |king | of Uí Briúin ( Irela
## [doc0993] g – The - year - old |King | Otto III gives Sword
## [doc0993]           Conrad I , |king | of Burgundy December
## [doc0994] lfonso V ( Noble ) , |king | of León ( Spain ) ( 
## [doc0994]                      |King | Æthelred II ( Unread
## [doc0994] gensburg Bagrat II , |king | of Iberia - Kartli (
## [doc0994] , ( probably ) under |King | Sweyn Forkbeard , pl
## [doc0994]                      |King | Otto III , now years
## [doc0994] ncho III ( Great ) , |king | of Pamplona ( approx
## [doc0994] ) Sancho Garcés II , |king | of Navarre ( Spain )
## [doc0995]                      |King | Seongjong accepts   
## [doc0995] ictorious ) , Viking |king | of Sweden García Fer
## [doc0995]                      |King | Kenneth             
## [doc0995]                  [ ] |King | Eric VI ( Victorious
## [doc0995]  II ( Fratricide ) , |king | of Alba ( Scotland )
## [doc0995] sson ( St . Olaf ) , |king | of Norway ( d. ) Reg
## [doc0995] . ) Cnut ( Great ) , |king | of Denmark , Norway 
## [doc0995] ryggvason is crowned |king | of Norway ( until ) 
## [doc0996] bert II ( Pious ) as |king | of France .         
## [doc0996] raic mac Donnchada , |king | of Osraige ( Ireland
## [doc0996] ber – Hugh I Capet , |king | of France ( b. )    
## [doc0996]            October – |King | Hugh I Capet dies in
## [doc0996]             Spring – |King |
## [doc0997]  ) Idwal ap Meurig , |king | of Gwynedd ( Wales )
## [doc0997] – Seongjong , Korean |king | ( b. )              
## [doc0997] lav ( Dirzislaus ) , |king | of Croatia Tailapa I
## [doc0997]                      |King | Stephen Držislav of 
## [doc0997]                      |King | Constantine III dies
## [doc0997] an Constantine III , |king | of Alba ( Scotland )
## [doc0997] . ) Rhys ap Tewdwr , |king | of Deheubarth ( d. )
## [doc0998]                      |King | Robert II ( Pious ) 
## [doc0999] ined fleet of Danish |king | Sweyn Forkbeard and 
## [doc0999]                      |King | Bermudo II abdicates
## [doc0999]  Maredudd ab Owain , |king | of Gwynedd ( Wales )
## [doc0999] Muirgheas mac Aedh , |king | of Uí Díarmata ( Ire
## [doc1000]       On September , |King | of Norway , Olaf Try
## [doc1000] ason ( or Olaf I ) , |king | of Norway Abu'l Hare
## [doc1000] pher Kyiso , Burmese |king | of Pagan Dynasty ( d
## [doc1000] gh Capet , was first |King | of Capetian royal dy
## [doc1001]  – Sokkate , Burmese |king | ( d. ) Al - Qa 'im ,
## [doc1001]                Khmer |King |
## [doc1001]          Robert II , |King | of France , marries 
## [doc1001]                      |King | Edward Martyr of Eng
## [doc1002]         Brian Boru , |king | of Leinster and Muns
## [doc1002] n ( d . ) George I , |king | of Georgia ( approxi
## [doc1002]                      |King |
## [doc1002] a ) Sancho Ramírez , |king | of Viguera ( approxi
## [doc1003] ) Edward Confessor , |king | of England ( d . ) F
## [doc1003]                      |King |
## [doc1003]                      |King | Robert II ( Pious ) 
## [doc1003]          Gurgen IV , |king | of Vaspurakan ( Arme
## [doc1003] n mac Maelruanaidh , |king | of Maigh Seóla ( Ire
## [doc1003]                      |King | Rudolph III of Burgu
## [doc1004] agnall mac Gofraid , |king | of Isles ( or )     
## [doc1004]             Spring – |King |
## [doc1004]  Henry II is crowned |King | of Italy by Archbish
## [doc1004] eburg Khusrau Shah , |king | of Justanids ( appro
## [doc1004]   Sancho III becomes |king | of Pamplona , Aragon
## [doc1005]                 High |King | of Ireland Brian Bor
## [doc1005] eircc , Red King ) , |king | of Scotland ( approx
## [doc1005]              March – |King | Kenneth III of Scotl
## [doc1005] Ruanaidh Ua Dubhda , |king | of Connacht Ma Yize 
## [doc1007]           November – |King | Henry               
## [doc1007]                      |King |
## [doc1007]  Hugues le Grand ) , |king | of France ( d. ) Ibn
## [doc1008]                      |King |
## [doc1008] dan mac Gadhra Mór , |king | of Síol Anmchadha Po
## [doc1008] n II ( Magistros ) , |king | of Iberia - Kartli (
## [doc1008]  ] Olof Skötkonung , |king | of Sweden , is bapti
## [doc1008]  Haraldsson , future |king | of Norway , makes ra
## [doc1008]      May – Henry I , |king | of France ( d .     
## [doc1009] rdelbach Ua Briain , |king | of Munster ( d . )  
## [doc1009] op March – Mokjong , |king | of Goryeo ( Korea ) 
## [doc1010] onchobar mac Taidg , |king | of Connacht Ermengol
## [doc1010]           The Goryeo |king | is unseated in a rev
## [doc1011]                      |King |
## [doc1012] García Sánchez III , |king | of Pamplona ( approx
## [doc1012]                      |King |
## [doc1012]                      |King | Malcolm             
## [doc1013]                      |King |
## [doc1013]                      |King | Henry II of Germany 
## [doc1013] aw and is proclaimed |king | of England in London
## [doc1014] d ( II The Unready , |King | of English 978-1013 
## [doc1014] hg Mór Ua Cellaigh , |king | of Uí Maine Brian Bo
## [doc1014]              March – |King |
## [doc1014]  Raja Raja Chola I , |king | of Chola dynasty ( I
## [doc1014]  . ) Cynan ab Iago , |king | of Gwynedd ( approxi
## [doc1014]           February – |King | Sweyn Forkbeard dies
## [doc1014]           February – |King | Henry II arrives at 
## [doc1014] arald II who becomes |king | of Denmark , while C
## [doc1015] rew I ( Catholic ) , |king | of Hungary ( d .    
## [doc1015]  ) Harald Hardrada , |king | of Norway ( d .     
## [doc1015]  – Arduin of Ivrea , |king | of Italy ( b. )     
## [doc1015] date ) Ferdinand I , |king | of León and Castile 
## [doc1015]   Owain ap Dyfnwal , |king | of Strathclyde ( Sco
## [doc1015]   Owain ap Dyfnwal , |king | of Strathclyde ( Sco
## [doc1015]                      |King |
## [doc1016]   Æthelred Unready , |king | of England , dies af
## [doc1016] irming his status as |king | of Norway .         
## [doc1016] mund II Ironside ) , |king | of England Badis ibn
## [doc1016]     Svein Knutsson , |king | of Norway ( d. )    
## [doc1016]  , leaving latter as |king | of Wessex. [ ] Novem
## [doc1016]   Æthelred Unready , |king | of England May – Jov
## [doc1016] efeat fleet of taifa |king | of Dénia , Mujahid a
## [doc1017] III ( or Vermudo ) , |king | of León ( approximat
## [doc1017] ( Great ) is crowned |king | of England .        
## [doc1018] achlumia Harald II , |king | and regent of Denmar
## [doc1018] eddan ap Blegywryd , |king | of Gwynedd Adolf I o
## [doc1018] Bagrat IV , Georgian |king | of Bagrationi dynast
## [doc1018]                      |King | Malcolm             
## [doc1018]     Cnut ( Great ) , |King | of England , travels
## [doc1019]  II ( Estridsson ) , |king | of Denmark ( approxi
## [doc1020]                      |King | Gagik               
## [doc1020]                      |King | Canute Great codifie
## [doc1020]            Gagik I , |king | of Bagratid Armenia 
## [doc1021] n ) Trilochanapala , |king | of Kabul Shani dynas
## [doc1021] Hovhannes Artsruni , |king | of Vaspurakan ( Grea
## [doc1021] e ) Mac Cú Ceanain , |king | of Uí Díarmata ( Ire
## [doc1021]  becoming concurrent |king | of outlying territor
## [doc1022]                      |King | Olof Skötkonung dies
## [doc1022]                      |King | George              
## [doc1022] Council of Orléans , |King | Robert II of France 
## [doc1022]    Olof Skötkonung , |king | of Sweden Rededya , 
## [doc1022] mes second Christian |king | of Swedish realm .  
## [doc1022]        ) Harold II , |king | of England ( approxi
## [doc1023] lywelyn ap Seisyll , |king | of Gwynedd and Powys
## [doc1024]  d . ) Magnus Good , |king | of Norway ( d. ) Apr
## [doc1025] mber – Hugh Magnus , |king | of France ( b. )    
## [doc1025]  in Gniezno as first |king | of Poland .         
## [doc1025] – Boleslaw I Brave , |king | of Poland ( b. )    
## [doc1025] aw I , is crowned as |king | of Poland by archbis
## [doc1025]  Ua Cleirigh , Irish |king | Sabur ibn Ardashir ,
## [doc1026]             Spring – |King | Conrad II , Elder , 
## [doc1026] rchbishop Aribert as |king | of Lombards .       
## [doc1027] ra Mór mac Dundach , |king | of Uí Maine ( Irelan
## [doc1027]  – Bagrat IV becomes |king | of Georgia on death 
## [doc1027]                May – |King | Robert II of France 
## [doc1027]  August – George I , |king | of Georgia ( House o
## [doc1027] Dogra mac Dúnadach , |king | of Síol Anmchadha ( 
## [doc1027]                      |King | Sigtrygg Silkbeard o
## [doc1028] dsson and is crowned |king | of Norway .         
## [doc1028] lfonso V ( Noble ) , |king | of León ( Spain ) ( 
## [doc1028]  elected and crowned |king | of Germany in Aachen
## [doc1028] am I ( Conqueror ) , |king | of England ( approxi
## [doc1028]                      |King | Sancho Garcés III ( 
## [doc1030] orvegiae ( ' eternal |king | of Norway ' ) .     
## [doc1030]                      |King |
## [doc1030] ttle of Stiklestad : |King | Olaf II Haraldsson (
## [doc1030]       Krešimir III , |king | of Croatia ( Trpimir
## [doc1030]  July – Kyansittha , |king | of Pagan Empire ( Bu
## [doc1030] sson ( St . Olaf ) , |king | of Norway Torstein K
## [doc1031] obert II ( Pious ) , |king | of France ( b. ) Aug
## [doc1031] lm III ( Canmore ) , |king | of Scotland ( d. ) H
## [doc1031]               July – |King | Robert II ( Pious ) 
## [doc1031]          Hyeonjong , |king | of Goryeo ( Korea ) 
## [doc1032] ral Gille Coemgáin , |king | of Moray ( Scotland 
## [doc1032]          September – |King | Rudolph III dies wit
## [doc1032]  ( or Wratislaus ) , |king | of Bohemia ( d . ) J
## [doc1032] onald III ( Fair ) , |king | of Scotland ( approx
## [doc1033] hydderch ap Iestyn , |king | of Gwent and Deheuba
## [doc1034] iuc , Norse - Gaelic |king | of Dublin Bernard Ro
## [doc1034]           November – |King | Malcolm             
## [doc1034] ember – Malcolm II , |king | of Alba ( Scotland )
## [doc1034]                      |King | Sancho III ( Great )
## [doc1034]                      |King |
## [doc1035]           November – |King |
## [doc1035] ncho III ( Great ) , |king | of Pamplona November
## [doc1035]     Svein Knutsson , |king | of Norway and son of
## [doc1035]            October – |King | Sancho III of Pamplo
## [doc1037] III ( or Vermudo ) , |king | of León November –  
## [doc1037]                      |King | Henry III ( eldest s
## [doc1037]                      |King | Harold              
## [doc1037] eas ua Cú Ceanainn , |king | of Uí Díarmata Rober
## [doc1037]    Ferdinand becomes |king | of Castile and León 
## [doc1038]      Kyiso , Burmese |king | of Pagan Dynasty Ral
## [doc1038] August – Stephen I , |king | of Hungary November 
## [doc1039] e date ) Sancho IV , |king | of Pamplona ( approx
## [doc1039] ) , who also becomes |king | of Italy and Burgund
## [doc1040]  Géza I ( Magnus ) , |king | of Hungary ( approxi
## [doc1040] date ) Ladislaus I , |king | of Hungary ( approxi
## [doc1040]  – Harold Harefoot , |king | of England [ ]      
## [doc1040] - Ö , Tibetan lama - |king | ( approximate date )
## [doc1040]              March – |King | Harold Harefoot dies
## [doc1040]             August – |King | Duncan              
## [doc1040]  date ) Alfonso VI , |king | of León and Castile 
## [doc1040]  who succeeds him as |king | of Scotland .       
## [doc1040]  August – Duncan I , |king | of Scotland [ ]     
## [doc1041] ahu ( or Kassapa ) , |king | of Sri Lanka ( b. ) 
## [doc1041] ld Hardrada ( future |king | of Norway ) , defeat
## [doc1041] ther Harthacnut , as |king | of England .        
## [doc1042] rd Confessor becomes |king | of England .        
## [doc1042]               June – |King | Harthacnut collapses
## [doc1042]  Magnus Good becomes |king | of Denmark after dea
## [doc1042]  June – Harthacnut , |king | of Denmark and Engla
## [doc1042] leslaw II Generous , |king | of Poland ( approxim
## [doc1042] ai ( d. ) Sancho V , |king | of Aragon and Pamplo
## [doc1043] athal mac Ruaidhri , |king | of Maigh Seóla ( Ire
## [doc1043] Confessor is crowned |king | of England at Winche
## [doc1043] int Hywel ab Owain , |king | of Glywysing ( Wales
## [doc1043]       [ ] November – |King | Henry III ( Black ) 
## [doc1043]            The first |king | of Kingdom of Nri , 
## [doc1044] l Aba , palatine and |king | of Hungary August – 
## [doc1044] ahaearn ap Caradog , |king | of Gwynedd ( d . ) W
## [doc1044] erman troops , under |King | Henry III ( Black ) 
## [doc1044]  ( for second time ) |king | of Hungary , and a v
## [doc1044]             August – |King | Anawrahta seizes of 
## [doc1045] – Edward Confessor , |King | of England , marries
## [doc1046] une – Jeongjong II , |king | of Goryeo ( b. )    
## [doc1046]  Uallach Ua Ruairc , |king | of Connacht Bystrík 
## [doc1046]             Revolt : |King | Peter Orseolo ( Vene
## [doc1046]             Autumn – |King | Henry III ( Black ) 
## [doc1046]   Munjong is crowned |king | of Goryeo ( Korea ) 
## [doc1047] drada ) becomes sole |king | of Norway , on death
## [doc1047] ipa Kama II , Indian |king | ( Hoysala Empire ) [
## [doc1047]  Magnus I ( Good ) , |king | of Norway [ ] [ ] [ 
## [doc1048]  II ( Haraldsson ) , |king | of Norway ( approxim
## [doc1048]                      |King | Edward Confessor goe
## [doc1048] abhaill Ua hEidhin , |king | of Hy Fiachrach Rain
## [doc1049] mate date ) Saw Lu , |king | of Pagan Kingdom ( d
## [doc1049] October – Seonjong , |king | of Goryeo ( d . ) Go
## [doc1050] [ ] Lhachen Gyalpo , |king | of Ladakh ( approxim
## [doc1050] Jacob ( or James ) , |king | of Sweden ( b. ) [ ]
## [doc1050] brother Emund Old as |king | of Sweden . [ ] [ ] 
## [doc1050]  Olaf I ( Hunger ) , |king | of Denmark ( approxi
## [doc1050] chertach Ua Briain , |king | of Munster ( approxi
## [doc1050]      Suryavarman I , |king | of Khmer Empire [ ] 
## [doc1051]                      |King |
## [doc1051] Ætheling , uncrowned |king | of England ( d. c. )
## [doc1052] ilip I ( Amorous ) , |king | of France ( d. ) Agn
## [doc1053] mon ( or Salomon ) , |king | of Hungary ( d . ) T
## [doc1054]        Lý Nh<U+1EAD>t Tôn , |king | of Lý Dynasty , begi
## [doc1054]                      |King |
## [doc1054] García Sánchez III , |king | of Pamplona ( b. c.1
## [doc1054] orge II ( Giorgi ) , |king | of Georgia ( approxi
## [doc1055]                      |King | Ferdinand I ( Great 
## [doc1055]                      |King | Andrew I ( Catholic 
## [doc1055]  Gruffudd ap Cynan , |king | of Gwynedd ( approxi
## [doc1055] ffydd ap Rhydderch , |king | of Deheubarth Mauger
## [doc1055] s himself with Welsh |king | Gruffydd ap Llywelyn
## [doc1056] only son Henry IV as |king | of Germans and enthr
## [doc1056] or William Rufus ) , |king | of England ( d . ) Z
## [doc1057]                      |King | Anawrahta captures T
## [doc1057] attle of Lumphanan : |King | Macbeth ( Red King )
## [doc1057] ly on September ) as |king | of Scotland at Scone
## [doc1057]                      |King | Ferdinand I ( Great 
## [doc1057]                      |King |
## [doc1057] h August – Macbeth , |king | of Scotland ( b. bef
## [doc1058]              March – |King | Lulach ( Unfortunate
## [doc1058] ch ( Unfortunate ) , |king | of Scotland [ ]     
## [doc1059] ( Great ) is crowned |king | of Croatia and Dalma
## [doc1059] athal mac Tigernán , |king | of Iar Connacht Eili
## [doc1060]             August – |King | Henry I ( a member f
## [doc1060]  ] Abbas ibn Shith , |king | ( malik ) of Ghurid 
## [doc1060] lip I ( Amorous ) as |king | of France .         
## [doc1060] hampion ) is crowned |king | of Hungary after his
## [doc1060] rew I ( Catholic ) , |king | of Hungary [ ] [ ] [
## [doc1060] ] August – Henry I , |king | of France ( b. ) [ ]
## [doc1060]          Emund Old , |king | of Sweden ( approxim
## [doc1060] Diarmait Ua Briain , |king | of Munster ( d. ) [ 
## [doc1060]    Eric I ( Good ) , |king | of Denmark ( approxi
## [doc1061] a Flaithbheartaigh , |king | of Iar Connacht Song
## [doc1062] h : The - year - old |King | Henry IV is abducted
## [doc1063] stian troops , under |King | Sancho II ( Strong )
## [doc1063] éla I ( Champion ) , |king | of Hungary December 
## [doc1063]                      |King | Ramiro I is killed a
## [doc1063]     May – Ramiro I , |king | of Aragon ( House of
## [doc1064]             Summer – |King | Ferdinand I ( Great 
## [doc1064]                      |King | Bagrat              
## [doc1065]           December – |King | Ferdinand I ( Great 
## [doc1065] dinand I ( Great ) , |king | of León and Castile 
## [doc1065] ls ( or Nicholas ) , |king | of Denmark ( d. ) Ri
## [doc1066] ardrada , is crowned |king | of Norway .         
## [doc1066] rold II ) is crowned |king | of England , probabl
## [doc1066] Harold Godwinson ) , |king | of England Leofwine 
## [doc1066] heling is proclaimed |king | of England ( but is 
## [doc1066] r , he is crowned as |king | William I of England
## [doc1066] – Edward Confessor , |king | of England [ ]      
## [doc1066]  Harald Hardrada ) , |king | of Norway Tostig God
## [doc1066] ims Harold Godwinson |king | of England .        
## [doc1066]                      |King | Stenkil ( or Steinke
## [doc1067] ats of government of |kings| ruling England . [ ]
## [doc1067] alsten , son of late |King | Stenkil , becomes ne
## [doc1067]             Spring – |King | William I ( Conquero
## [doc1067] dh Ua Con Ceanainn , |king | of Uí Díarmata Bahma
## [doc1067]     He is proclaimed |king | and co-ruler with hi
## [doc1068] on ( Toresfostre ) , |king | of Norway ( d . ) He
## [doc1068]     Vijayaditya VI , |king | of Eastern Chalukyas
## [doc1069] - Mu'tadid , Abbadid |king | April – Magnus II ( 
## [doc1069]                      |King | Sweyn               
## [doc1069]           February – |King | Abbad II al - Mu'tad
## [doc1069] on ap Cynfyn , Welsh |king | ( b. c.1020 )       
## [doc1070]             Spring – |King | Sweyn II joins Engli
## [doc1070] ilsson is deposed as |king | of Sweden , with Håk
## [doc1070] oloman ( Learned ) , |king | of Hungary ( d. ) Eu
## [doc1072] – Alfonso VI becomes |king | of León and Castile 
## [doc1072] ctober – Sancho II , |king | of Castile and León 
## [doc1072]                      |King | William I ( Conquero
## [doc1072]                      |King | Sancho II ( Strong )
## [doc1072] it mac Máel na mBó , |king | of Leinster February
## [doc1073] s ibn Habus , Berber |king | of Taifa of Granada 
## [doc1073]            [ ] May – |King | Sancho IV of Navarre
## [doc1073] onso I ( Battler ) , |king | of Aragon ( approxim
## [doc1074]  Peter Krešimir IV , |king | of Croatia ( or )   
## [doc1074]                      |King | Solomon is defeated 
## [doc1074] bruary – Conrad II , |king | of Germany ( d. ) [ 
## [doc1075] šimir IV ( Great ) , |king | of Croatia ( or )   
## [doc1075] ) Jaya Pala , Indian |king | of Kamarupa ( d . ) 
## [doc1075] årdske is deposed as |king | of Svealand ( also c
## [doc1075] algaidh mac Cathal , |king | of Maigh Seóla Anne 
## [doc1075]                      |King | Håkan Red of Götalan
## [doc1075] laíb meic Ragnaill , |king | of Dublin Gundekar I
## [doc1076] onimir is crowned as |king | of Croatia in Solin 
## [doc1076]          Sancho IV , |king | of Pamplona ( or Nav
## [doc1076] ara II , and becomes |king | of Western Chalukya 
## [doc1076]  II ( Estridsson ) , |king | of Denmark May –    
## [doc1076] rous ) is crowned as |king | of Poland by Archbis
## [doc1077]  Géza I ( Magnus ) , |king | of Hungary October –
## [doc1077]                      |King | Mihailo I is given t
## [doc1077]                      |King | Alfonso VI ( Brave )
## [doc1077] rman nobles opposing |king | Henry IV elected an 
## [doc1078] ander I ( Fierce ) , |king | of Scotland ( d. ) A
## [doc1078] rnor Rhys ab Owain , |king | of Deheubarth Richar
## [doc1079]                      |King | William Conqueror es
## [doc1079] enkilsson returns as |king | of Sweden , jointly 
## [doc1079]  February – Yejong , |king | of Goryeo ( d. )    
## [doc1079] a Flaithbheartaigh , |king | of Iar Connacht Al -
## [doc1079] and poet Håkan Red , |king | of Sweden ( approxim
## [doc1080]                      |King | Alfonso VI ( Brave )
## [doc1080]                      |King | William I ( Conquero
## [doc1080] April – Harald III , |king | of Denmark ( b. )   
## [doc1080] chen Gyalpo , Indian |king | of Ladakh ( b. ) Mic
## [doc1080]              April – |King | Harald III dies afte
## [doc1080] ld Kesja ( Spear ) , |king | of Denmark ( d. )   
## [doc1080] chen Utpala , Indian |king | of Ladakh ( d. ) Mag
## [doc1081]            Mihailo ( |King | of Slavs ) , king of
## [doc1081]   Louis VI ( Fat ) , |king | of France ( approxim
## [doc1081]                      |King | William I ( Conquero
## [doc1081]                      |King | Mihailo ( King of Sl
## [doc1081] aw II ( Generous ) , |king | of Poland ( or ) Car
## [doc1081]                      |King | Alfonso VI ( Brave )
## [doc1082] aw II ( Generous ) , |king | of Poland ( or )    
## [doc1083]                      |King | Sancho Ramírez of Pa
## [doc1083]                      |King | William I ( Conquero
## [doc1083] orra , child of late |King | García Sánchez III o
## [doc1084]              April – |King | Kyansittha begins hi
## [doc1084]             Saw Lu , |king | of Pagan Kingdom ( b
## [doc1084] hsartan I , Georgian |king | of Kakheti and Heret
## [doc1084]                      |King | Halsten Stenkilsson 
## [doc1084] ers ( d. ) David I , |king | of Scotland ( approx
## [doc1084]  – Heonjong , Korean |king | of Goryeo ( d . ) Al
## [doc1085] av I , becomes first |king | of Bohemia and is el
## [doc1085]                May – |King | Alfonso VI ( Brave )
## [doc1086] Canute IV ( Holy ) , |king | of Denmark July – To
## [doc1086] Ramiro II ( Monk ) , |king | of Aragon ( d. ) Aug
## [doc1086]         [ ] August – |King | William I ( Conquero
## [doc1087] Yemen Blot - Sweyn , |king | of Svealand ( approx
## [doc1087]          September – |King | William I ( Conquero
## [doc1087] in proclaims himself |king | of Sweden ( approxim
## [doc1087] mon ( or Salomon ) , |king | of Hungary ( b. ) Ya
## [doc1087] lliam II who becomes |king | of England .        
## [doc1087] am I ( Conqueror ) , |king | of England [ ]      
## [doc1088] d ap Bleddyn , Welsh |king | of Powys ( b. )     
## [doc1088] bach Ua Conchobair , |king | of Connacht ( d. ) W
## [doc1088]  William as rightful |king | of England .        
## [doc1089] Demetrius Zvonimir , |king | of Croatia and Dalma
## [doc1089]                      |King | Demetrius Zvonimir o
## [doc1089]                      |King | George              
## [doc1089] urd I ( Crusader ) , |king | of Norway ( d. ) Wul
## [doc1090] laungsithu , Burmese |king | of Pagan Dynasty ( d
## [doc1090] laungsithu , Burmese |king | of Pagan Dynasty ( d
## [doc1090] c II ( Memorable ) , |king | of Denmark ( approxi
## [doc1090]                      |King | Stephen             
## [doc1090]  March – García II , |king | of Galicia and Portu
## [doc1091]                      |King | William II invades N
## [doc1091] a Flaithbheartaigh , |king | of Iar Connacht Robe
## [doc1091]                      |King | Ladislaus           
## [doc1091]             Spring – |King | Stephen II , last me
## [doc1091]             Summer – |King | Malcolm III of Scotl
## [doc1091] He proclaims himself |king | , but is contested b
## [doc1092]             Summer – |King | William II annexes C
## [doc1092] Fulk V ( Younger ) , |king | of Jerusalem ( d. ) 
## [doc1092] ratislaus II , first |king | of Bohemia , dies af
## [doc1092] islaus II , duke and |king | of Bohemia May – Rem
## [doc1092]                      |King | Ladislaus           
## [doc1093] mber – Malcolm III , |king | of Scotland ( b. )  
## [doc1093]  Iestyn ap Gwrgant , |king | of Morgannwg ( b. ) 
## [doc1093]     Rhys ap Tewdwr , |king | of Deheubarth , kill
## [doc1093]  Olaf III Peaceful , |king | of Norway October – 
## [doc1093]                      |King | Malcolm III of Scotl
## [doc1093]      [ ] September – |King | Olaf III of Norway (
## [doc1093]  ( d. ) Conrad III , |king | of Italy and Germany
## [doc1094]                      |King | Ladislaus I of Hunga
## [doc1094] vember – Duncan II , |king | of Scotland Abu Ali 
## [doc1094] can II ( son of late |King | Malcolm III ) invade
## [doc1094]           November – |King | Donald III mobilizes
## [doc1094]    June – Sancho V , |king | of Aragon and Pamplo
## [doc1095] van , Norse - Gaelic |king | of Dublin Henry of L
## [doc1095]                      |King | Olaf I ( Hunger ) di
## [doc1095] ecember – Roger II , |king | of Sicily ( d. ) [ ]
## [doc1095]  Olaf I ( Hunger ) , |king | of Denmark October –
## [doc1095]        Ladislaus I , |king | of Hungary August – 
## [doc1096]                      |King | Alfonso VI ( Brave )
## [doc1096]                      |King | Peter I of Aragon co
## [doc1096] usly is n't a single |king | among Crusaders ' le
## [doc1096]   Stephen of Blois , |king | of England ( approxi
## [doc1096]                      |King | Coloman ( Learned ) 
## [doc1097] eter , last Croatian |king | , is defeated and ki
## [doc1097] some 30,000 men ) of |King | Alfonso VI ( Brave )
## [doc1097]                      |King | Peter               
## [doc1097]    Heonjong , Korean |king | of Goryeo ( b. ) Bal
## [doc1097] nd bishop Peter II , |king | of Croatia ( see Bat
## [doc1097]                      |King | Donald III ( Fair ) 
## [doc1098] Vinayaditya , Indian |king | of Hoysala Empire Wa
## [doc1098]                      |King | Edgar of Scotland si
## [doc1099] onald III ( Fair ) , |king | of Scotland ( b. )  
## [doc1099]     Olav Magnusson , |king | of Norway ( d. ) Ran
## [doc1099] of Bouillon is named |king | ( but refuses to be 
## [doc1100] or William Rufus ) , |king | of England [ ]      
## [doc1100] d. ) Owain Gwynedd , |king | of Gwynedd ( approxi
## [doc1100]                      |King | William II ( or Will
## [doc1100]  descendant of Saxon |king | Edmund Ironside .   
## [doc1101]  Constantine Bodin , |king | of Duklja ( approxim
## [doc1101] nobleman Conrad II , |king | of Germany and Italy
## [doc1101]  ( d. ) Stephen II , |king | of Hungary and Croat
## [doc1101]              April – |King | Canute IV ( Holy ) o
## [doc1101]             Spring – |King | Baldwin             
## [doc1102] ned ; body of former |king | is supposedly found 
## [doc1102] rs ( knights ) under |King | Baldwin I are defeat
## [doc1102]                      |King |
## [doc1102]   Coloman is crowned |king | of Croatia ( until )
## [doc1103]  – Eric I ( Good ) , |king | of Denmark August – 
## [doc1103] ucceed him as joi nt |kings| of Norway .         
## [doc1104]  ( Battler ) becomes |king | of Aragon and Navarr
## [doc1104]                May – |King | Baldwin             
## [doc1104]                      |King | David IV ( Builder )
## [doc1104] lsh bishop Peter I , |king | of Aragon and Navarr
## [doc1105] arch – Alfonso VII , |king | of León and Castile 
## [doc1105]         Inge Elder , |king | of Sweden ( approxim
## [doc1105] son Henry V ( who is |king | of Germany ) .      
## [doc1105]             Summer – |King |
## [doc1106] gnus I ( Nilsson ) , |king | of Sweden ( d. ) Mat
## [doc1106]                      |King |
## [doc1106] nall Ua Conchobair , |king | of Connacht Gonzalo 
## [doc1107]  along with his ally |King | Coloman ( Learned ) 
## [doc1107] not receive title of |king | , but of Prince of C
## [doc1107]             Autumn – |King | Sigurd I ( Crusader 
## [doc1107]  Edgar ( Valiant ) , |king | of Scotland April – 
## [doc1107]            January – |King | Edgar ( Valiant ) di
## [doc1107]                      |King |
## [doc1107] he is first European |king | to support Crusaders
## [doc1108]               July – |King | Philip I ( Amorous )
## [doc1108]             Spring – |King | Sigurd I ( Crusader 
## [doc1108] ilip I ( Amorous ) , |king | of France November –
## [doc1109] fonso VI ( Brave ) , |king | of León and Castile 
## [doc1109] so I ( Conqueror ) , |king | of Portugal ( d. ) S
## [doc1110]                      |King |
## [doc1110]                      |King |
## [doc1110] I ( or Vladislav ) , |king | of Bohemia ( d . ) W
## [doc1110] Mac Murchada , Irish |king | of Leinster ( d. ) D
## [doc1110] abahu I , Sri Lankan |king | of Polonnaruwa Willi
## [doc1110] Chola I over Kalinga |king | , Anantavarman Choda
## [doc1111] ll Ua Briain becomes |king | of Hebrides and Isle
## [doc1111] so I ( Conqueror ) , |King | of Portugal ( d. ) A
## [doc1112] ía IV ( Restorer ) , |king | of Navarre ( d. )   
## [doc1112]         Kyansittha , |king | of Pagan Empire ( or
## [doc1112] e II ( or Giorgi ) , |king | of Georgia ( b. ) Gh
## [doc1113]                      |King | Suryavarman         
## [doc1113]                      |King | Baldwin             
## [doc1113] haranindravarman I , |king | of Khmer Empire Gira
## [doc1113]         Kyansittha , |king | of Pagan Empire ( or
## [doc1114]  b. ) Shahriyar IV , |king | of Mazandaran ( b. )
## [doc1115] agnus IV ( Blind ) , |king | of Norway ( approxim
## [doc1115] r – Olav Magnusson , |king | of Norway ( b. )    
## [doc1116]           February – |King | Coloman ( Learned ) 
## [doc1116]      The Welsh under |King | Gruffydd ap Rhys of 
## [doc1116] oloman ( Learned ) , |king | of Hungary February 
## [doc1116] – Philip of France , |king | of France ( d. ) Nov
## [doc1116] idrí Ua Conchobair , |king | of Connacht ( d. ) F
## [doc1117]                      |King | Mahaabarana Adeettiy
## [doc1117]                      |King | Stephen             
## [doc1118]  I ( of Boulogne ) , |king | of Jerusalem April  
## [doc1118] Younger becomes sole |king | of Sweden .         
## [doc1118] Diarmait Ua Briain , |king | of Munster Florence 
## [doc1118] drí na Saide Buide , |king | of Connacht Vladimir
## [doc1118] ltan ( b. ) Philip , |king | of Sweden ( House of
## [doc1119] chertach Ua Briain , |king | of Munster March – P
## [doc1119] h Ua Con Ceannainn , |king | of Uí Díarmata Geoff
## [doc1119]  Battle of Brémule : |King | Henry I of England d
## [doc1120]                      |King |
## [doc1120]                      |King | Baldwin             
## [doc1120] s VII ( le Jeune ) , |king | of France ( d. ) Phi
## [doc1121]                      |King | Baldwin II , in repr
## [doc1121]                      |King | David IV ( Builder )
## [doc1121] a Flaithbheartaigh , |king | of Iar Connacht Robe
## [doc1121] Ua Lochlainn , Irish |king | ( b. )              
## [doc1122]                      |King |
## [doc1123]         [ ] August – |King | Eystein I ( Magnusso
## [doc1123] abahu I , Sri Lankan |king | of Polonnaruwa ( d. 
## [doc1123]              April – |King | Baldwin II of Jerusa
## [doc1123]    I ( Magnusson ) , |king | of Norway September 
## [doc1125]  II ( Haraldsson ) , |king | of Norway ( approxim
## [doc1125]                      |King | Alfonso I ( Battler 
## [doc1125]                      |King |
## [doc1125] vid IV ( Builder ) , |king | of Georgia ( b. ) Ap
## [doc1125]  II ( Haraldsson ) , |king | of Norway ( approxim
## [doc1125]       Inge Younger , |king | of Sweden ( approxim
## [doc1125]                      |King |
## [doc1126] Ætheling , uncrowned |king | of England ( b. )   
## [doc1126]                      |King | Alfonso Battler of A
## [doc1126] mperador who becomes |king | of León ( until ) . 
## [doc1126]                      |King | Lothair III makes He
## [doc1126]    Vikramaditya VI , |king | of Western Chalukya 
## [doc1127]             Summer – |King | Roger               
## [doc1127]                      |King |
## [doc1127]                      |King | Louis VI ( Fat ) app
## [doc1128]                      |King | Louis VI ( Fat ) of 
## [doc1128]               June – |King |
## [doc1130] d Gille become joint |kings| of Norway , starting
## [doc1130]              March – |King | Sigurd              
## [doc1130] Strong is deposed as |king | of Götaland , when S
## [doc1131]  d. ) Ladislaus II , |king | of Hungary and Croat
## [doc1131]  Myeongjong , Korean |king | of Goryeo ( d . ) Eu
## [doc1131] ldemar I ( Great ) , |king | of Denmark ( d. ) No
## [doc1131]             August – |King | Baldwin II falls ser
## [doc1131]  ( b. ) Stephen II , |king | of Hungary and Croat
## [doc1131] ugust – Baldwin II , |king | of Jerusalem August 
## [doc1132]           He becomes |king | of province of Leins
## [doc1132] Sancho VI ( Wise ) , |king | of Navarre ( d. ) An
## [doc1132] aredudd ap Bleddyn , |king | of Powys ( b. )     
## [doc1133]  II ( Curtmantle ) , |king | of England ( d. ) [ 
## [doc1133] ( or Sigurd Munn ) , |king | of Norway ( d. ) Ste
## [doc1134] ourt of his cousin , |King | Roger II , who appoi
## [doc1134] ho III ( Desired ) , |king | of Castile ( d. ) Sv
## [doc1134] ls ( or Nicholas ) , |king | of Denmark July Belt
## [doc1134] onso I ( Battler ) , |king | of Aragon October – 
## [doc1134]                      |King | Alfonso I ( Battler 
## [doc1135]           December – |King | Henry I dies at Lyon
## [doc1135] ld Kesja ( Spear ) , |king | of Denmark ( b. )   
## [doc1135]            January – |King | Harald IV returns wi
## [doc1135] December – Henry I , |king | of England ( b. )   
## [doc1135]             Summer – |King | Roger               
## [doc1135]                      |King | García              
## [doc1135] ge I ( Hunchback ) , |king | of Norway ( d. ) Joa
## [doc1135]                May – |King | Alfonso VII is crown
## [doc1136] I ( or Amalricus ) , |king | of Jerusalem ( d. ) 
## [doc1136]                      |King | Owain Gwynedd ( styl
## [doc1136]           December – |King | Harald              
## [doc1136]             Spring – |King |
## [doc1136]        In response , |King | Stephen raises an ar
## [doc1137] – Louis VI ( Fat ) , |king | of France ( b. ) Sep
## [doc1137]  Gruffudd ap Cynan , |king | of Gwynedd Gruffydd 
## [doc1137]             Spring – |King |
## [doc1137] ate ) Ferdinand II , |king | of León and Galicia 
## [doc1138] ed ( Monkey King ) , |king | of Sicily ( d. ) Jan
## [doc1138]                      |King | David               
## [doc1139] oger II of Sicily as |King | of Sicily , Duke of 
## [doc1139] oger II of Sicily as |King | of Sicily , Duke of 
## [doc1140]             Summer – |King | Roger               
## [doc1140]             Summer – |King | Stephen appoints    
## [doc1140] omhnall Caomhánach , |king | of Leinster ( d. ) E
## [doc1140]             Spring – |King |
## [doc1140]                      |King | Conrad III enfeoffs 
## [doc1141] February – Béla II , |King | of Hungary and Croat
## [doc1141] l of of England from |King | Stephen , who is cap
## [doc1141] – Géza II is crowned |King | of Hungary and Croat
## [doc1142] ar Ua Briain , Irish |king | of Munster and Dubli
## [doc1142]                      |King | Afonso I Henriques o
## [doc1142] William I ( Lion ) , |king | of Scotland ( approx
## [doc1142]                      |King | Louis VII Younger of
## [doc1143] – Fulk ( Younger ) , |king | of Jerusalem Decembe
## [doc1143] gitimate son of late |King | Henry I ) defeats En
## [doc1143]             Spring – |King | Conrad III gives Bav
## [doc1145]  Mansur , victorious |king | .                   
## [doc1145]       At Christmas , |King | Louis VII announces 
## [doc1145]  Magnus Haraldsson , |king | of Norway ( approxim
## [doc1146]                      |King | Louis VII of France 
## [doc1146]             Summer – |King | Roger               
## [doc1146]                      |King | Conrad III takes cro
## [doc1146]  August – Eric III , |king | of Denmark ( House o
## [doc1147]  – Siege of Lisbon : |King | Afonso I of Portugal
## [doc1147]                      |King | Roger               
## [doc1147] e 20,000 men ) under |King | Conrad III leaves Re
## [doc1147] akon II Sigurdsson , |king | of Norway ( d. ) Hug
## [doc1148]           Béla III , |king | of Hungary and Croat
## [doc1148] ison surrenders. [ ] |King | Afonso I ( Great ) o
## [doc1148]              March – |King | Conrad III recovers 
## [doc1149] cknowledges Scottish |king | 's right to Northumb
## [doc1149]             Spring – |King |
## [doc1149]                      |King | Baldwin             
## [doc1149]                      |King | Louis VII and Queen 
## [doc1150]       At same time , |King | Conrad III besieges 
## [doc1150]     The - year - old |King | Inge I ( Hunchback )
## [doc1150] ía IV ( Restorer ) , |king | of Navarre December 
## [doc1150] Leo I ( or Levon ) , |king | of Armenian Cilicia 
## [doc1152]             Spring – |King | Baldwin             
## [doc1152] ruary – Conrad III , |king | of Italy and Germany
## [doc1152]           February – |King | Conrad III dies afte
## [doc1152]              March – |King | Louis VII repudiates
## [doc1152]              April – |King |
## [doc1153] illiam II ( Good ) , |king | of Sicily ( d. ) Jan
## [doc1153]            [ ] May – |King | David I dies after a
## [doc1153]  Óláfr Guðrøðarson , |king | of Isles July – Euge
## [doc1153] prus ( or Amaury ) , |king | of Jerusalem ( d.   
## [doc1153] – Siege of Ascalon : |King | Baldwin III of Jerus
## [doc1153]                      |King | Roger II sends a Sic
## [doc1153] a Conchobair , Irish |king | ( d. ) Fujiwara no K
## [doc1153]      May – David I , |king | of Scotland ( b. )  
## [doc1154]  October – Stephen , |king | of England ( b. )   
## [doc1154]            October – |King |
## [doc1154] ebruary – Roger II , |king | of Sicily ( b. ) [ ]
## [doc1154]             Autumn – |King | Frederick I ( Barbar
## [doc1154] ovember – Sancho I , |king | of Portugal ( d. ) A
## [doc1154]       [ ] February – |King | Roger               
## [doc1155]             Spring – |King |
## [doc1155] n June – Sigurd II , |king | of Norway ( b. )    
## [doc1155]               June – |King | Frederick I ( Barbar
## [doc1155]  Ireland , but Irish |kings| resist English rule 
## [doc1155] bruary – Henry Young |King | , son of Henry II ( 
## [doc1156]                May – |King | William I ( Bad ) la
## [doc1156]           December – |King | Sverker I ( Elder ) 
## [doc1156] verker I ( Elder ) , |king | of Sweden Peter Vene
## [doc1156] agnus V Erlingsson , |king | of Norway ( d. ) Rob
## [doc1156] a Conchobair , Irish |king | ( b. )              
## [doc1157]            October – |King | Sweyn III of Denmark
## [doc1157] riage to Henry Young |King | and queen of Hungary
## [doc1157] I of Denmark becomes |king | of all Denmark , and
## [doc1157]          September – |King | Richard I of England
## [doc1157]                      |King | Eystein II of Norway
## [doc1157] b. c. ) [ ] August – |King | Alfonso VII of Casti
## [doc1158]             August – |King | Sancho III ( Desired
## [doc1158]             Summer – |King | Henry II travels to 
## [doc1158] ugust – Sancho III , |king | of Castile ( b. )   
## [doc1158] Vladislav II becomes |king | of Bohemia .        
## [doc1160] y Eric IX ( Holy ) , |king | of Sweden ( b. ) Ibn
## [doc1160] nstance of Castile , |King | Louis VII marries Ad
## [doc1160]        [ ] January – |King | Frederick I ( Barbar
## [doc1161] Karl ) , who becomes |king | of Sweden ( until ) 
## [doc1161] ldwin IV ( Leper ) , |king | of Jerusalem ( d. ) 
## [doc1161] y – Battle of Oslo : |King | Inge I ( Hunchback )
## [doc1161]  II ( Henriksson ) , |king | of Sweden ( b. )    
## [doc1161]                      |King | Henry II is informed
## [doc1162] b. ) May – Géza II , |king | of Hungary and Croat
## [doc1162]  II ( Sigurdsson ) , |king | of Norway ( b. )    
## [doc1162] Bosnia , is declared |king | of Hungary and Croat
## [doc1162]               June – |King | Henry II has his cha
## [doc1163]           February – |King | Baldwin             
## [doc1163] ( d. ) [ ] January – |King | Ladislaus II of Hung
## [doc1164]            January – |King |
## [doc1164]                      |King | Olaf II of Norway is
## [doc1165] August – Philip II , |king | of France ( d. ) Alb
## [doc1165] ember – Malcolm IV , |king | of Scotland ( b. ) A
## [doc1165]           December – |King | Malcolm IV dies at J
## [doc1165]                      |King | Henry II invades Wal
## [doc1165]         Stephen IV , |king | of Hungary and Croat
## [doc1165]                      |King | Owain ap Gruffydd ( 
## [doc1165]         Stephen IV , |king | of Hungary and Croat
## [doc1166]                May – |King | William I ( Wicked )
## [doc1166] idrí Ua Conchobair , |king | of Connacht , who de
## [doc1166]  I ( or Henry II ) , |king | of Jerusalem ( d. ) 
## [doc1166] lliam I ( wicked ) , |king | of Sicily ( b. )    
## [doc1167] laungsithu , Burmese |king | of Pagan Dynasty ( b
## [doc1167]              April – |King | Charles VII ( Sverke
## [doc1167]                      |King |
## [doc1167] II ( Sverkersson ) , |king | of Sweden ( b. )    
## [doc1167] or Dermot ) , former |king | of Leinster , return
## [doc1168]             Summer – |King | Amalric             
## [doc1168]                      |King | Valdemar I ( Great )
## [doc1169] r sons , Henry Young |King | , Richard I , Geoffr
## [doc1169]                      |King | Henry II of England 
## [doc1169]                      |King | Amalric I of Jerusal
## [doc1170]                      |King | Amalric I withdraws 
## [doc1170] enne ( or John I ) , |king | of Jerusalem ( d. ) 
## [doc1170] l ab Owain Gwynedd , |king | of Gwynedd Ibn Zafar
## [doc1170]  Owain ap Gruffudd , |king | of Gwynedd ( b. )   
## [doc1170]               June – |King | Henry II has his - y
## [doc1170] -arms to Henry Young |King | .                   
## [doc1170] r II ( Conqueror ) , |king | of Denmark ( d. ) Au
## [doc1171] maid mac Murchadha , |king | of Leinster ( b. )  
## [doc1171] ugust – Alfonso IX , |king | of León and Galicia 
## [doc1171]               July – |King |
## [doc1171]             Autumn – |King | Alfonso II ( Chaste 
## [doc1171]  last Norse – Gaelic |king | of Dublin , is captu
## [doc1171]              March – |King | Amalric             
## [doc1171] ll ( or Torcaill ) , |king | of Dublin Gleb of Ki
## [doc1172] nall Mór Ua Briain , |king | of Munster .        
## [doc1172] waladr ap Gruffydd , |king | of Gwynedd Hugh of F
## [doc1172] r heir , Henry Young |King | , becomes jealous ov
## [doc1172] here he is acclaimed |king | by Hungarian nobilit
## [doc1172]                      |King | Henry II and Humbert
## [doc1172]        Stephen III , |king | of Hungary ( b. )   
## [doc1173]                      |King | Canute I ( Knut Erik
## [doc1173] . ) Llywelyn Great , |king | of Gwynedd ( d. ) Lo
## [doc1173]                      |King | Béla III invites Cis
## [doc1173] outh India Sinhalese |king | Parakramabahu Great 
## [doc1174]               July – |King | Amalric             
## [doc1174] orted by Henry Young |King | and Philip of Alsace
## [doc1174]                      |King | William I ( Lion ) s
## [doc1174] r July – Amalric I , |king | of Jerusalem ( b. ) 
## [doc1174] shop ( d. ) Emeric , |king | of Hungary and Croat
## [doc1174] his sons Henry Young |King | , Richard , Geoffrey
## [doc1175]                 High |King | Ruaidrí Ua Conchobai
## [doc1175] n ( d. ) Roger III , |king | of Sicily ( House of
## [doc1175]                      |King |
## [doc1175] ruary – Nadaungmya , |king | of Burma ( d. ) Al -
## [doc1176]                      |King |
## [doc1177]  Sigurdson ( Later , |King | Sverre I , of Norway
## [doc1177] August – Baldwin V , |King | of Jerusalem ( d. ) 
## [doc1178] a Flaithbheartaigh , |king | of Iar Connacht Ada 
## [doc1178] er II ( Catholic ) , |king | of Aragon ( d. ) Rol
## [doc1178] barossa ) is crowned |King | of Burgundy at Arles
## [doc1178] blemen with breaking |king | 's peace .          
## [doc1178]                      |King | George              
## [doc1179]                      |King | William I ( Lion ) e
## [doc1180] is VII ( Younger ) , |king | of France ( b. )    
## [doc1180] ric X ( Knutsson ) , |king | of Sweden ( approxim
## [doc1180]             Summer – |King | Baldwin IV ( Leper )
## [doc1180]  for having breached |king | 's peace .          
## [doc1180]          September – |King | Louis VII ( Younger 
## [doc1181]                      |King |
## [doc1181]                      |King |
## [doc1181]                      |King | Philip II ( Augustus
## [doc1182]           Béla III , |king | of Hungary , ravages
## [doc1182] ehold of Henry Young |King | , is accused of havi
## [doc1182] ldemar I ( Great ) , |king | of Denmark ( b. )   
## [doc1182]                      |King | Baldwin             
## [doc1182]            [ ] May – |King | Valdemar I ( Great )
## [doc1182]             Spring – |King | Philip II ( Augustus
## [doc1183]   June – Henry Young |King | , son of Henry II of
## [doc1184] Battle of Fimreite : |King |
## [doc1184] March – George III , |king | of Georgia ( House o
## [doc1184]                      |King | Henry II encourages 
## [doc1184] s V ( Erlingsson ) , |king | of Norway ( b. )    
## [doc1185]          The child - |king | becomes a pawn in po
## [doc1185]  Afonso II ( Fat ) , |king | of Portugal ( d. ) A
## [doc1185] ldwin IV ( Leper ) , |king | of Jerusalem ( b. ) 
## [doc1185]                      |King | Philip              
## [doc1185] Afonso I ( Great ) , |king | of Portugal ( b. )  
## [doc1185]                      |King | William II ( Good ) 
## [doc1185] ge II ( Bårdsson ) , |king | of Norway ( d. ) Mic
## [doc1185]    – The - year- old |King | Baldwin             
## [doc1185]                      |King | Henry II knights his
## [doc1185]           December – |King | Afonso I ( Great ) d
## [doc1186]     Jayavarman VII , |king | of Cambodia , founds
## [doc1186] ter death of child - |king | Baldwin V , his moth
## [doc1187] II ( Lion ) , French |king | ( d. ) Ela of Salisb
## [doc1187]                      |King |
## [doc1187] øðr Óláfsson , Norse |king | of Dublin November –
## [doc1188] ary – Ferdinand II , |king | of León and Galicia 
## [doc1188]            January – |King | Ferdinand II dies af
## [doc1188]             Spring – |King |
## [doc1188]                 Both |kings| agree to peace terms
## [doc1189]  II ( Curtmantle ) , |king | of England ( b. ) [ 
## [doc1189] st – Siege of Acre : |King | Guy of Lusignan move
## [doc1189] Richard I is crowned |king | of England in Westmi
## [doc1189]                      |King | Sancho I ( Populator
## [doc1189]       [ ] November – |King | William II ( Good ) 
## [doc1189]           December – |King | William I ( Lion ) o
## [doc1189] a Conchobair , Irish |king | Conon II ( or Cono )
## [doc1189] illiam II ( Good ) , |king | of Sicily ( b. ) Nov
## [doc1190]               July – |King | Richard I ( Lion Hea
## [doc1190]  making him de facto |king | of Jerusalem ( as Co
## [doc1190]                      |King | Stefan Nemanja found
## [doc1191]                      |King | Narapatisithu appoin
## [doc1191] gitimate son of late |King | Henry II and half - 
## [doc1191]                      |King | Canute VI leads a Da
## [doc1191]                      |King | Jayavarman          
## [doc1191]            Among are |King | Guy of Lusignan of J
## [doc1191]  or Lasha Giorgi ) , |king | of Georgia ( d. ) [ 
## [doc1191]              April – |King | Richard I ( Lionhear
## [doc1191] o Tancred of Lecce , |king | or usurper of Sicily
## [doc1192] salem ( d. ) [ ] [ ] |King | Stefan Radoslav of S
## [doc1192] errat ( Conrad I ) , |King | of Jerusalem , is as
## [doc1192] Prithviraj Chauhan , |King | of Chauhan Dynasty (
## [doc1193] cember – Roger III , |king | of Sicily ( House of
## [doc1193]           February – |King | Richard I ( Lionhear
## [doc1193]                      |King |
## [doc1193]                      |King | Tancred of Sicily ar
## [doc1193]                      |King | Philip II ( Augustus
## [doc1194] cce ) and is crowned |king | of Sicily .         
## [doc1194]  levied taxes to pay |king | 's ransom and put do
## [doc1194]  – Guy of Lusignan , |king | of Jerusalem ( b. ) 
## [doc1194] – Tancred of Lecce , |king | of Sicily ( b. )    
## [doc1194]           February – |King | Richard I ( Lionhear
## [doc1194] Sancho VI ( Wise ) , |king | of Navarre ( b. )   
## [doc1196]  , Frederick II , as |king | of Romans and heir t
## [doc1196] n April – Béla III , |king | of Hungary and Croat
## [doc1196] ute I ( Eriksson ) , |king | of Sweden ( approxim
## [doc1196]              April – |King | Alfonso II ( Chaste 
## [doc1197] out between Emeric , |King | of Hungary and his y
## [doc1197] aithbertaigh , Irish |king | of Iar Connacht Tugh
## [doc1197]  I ( or Henry II ) , |king | of Jerusalem ( b. ) 
## [doc1197]  I ( or Henry II ) , |king | of Jerusalem , dies 
## [doc1197]                      |King | Richard             
## [doc1198] I , daughter of late |King | Amalric I .         
## [doc1198] ust – Alexander II , |king | of Scotland ( d. ) S
## [doc1198]           The French |king | is among who plunge 
## [doc1198]        His brother , |King | Richard I ( Lionhear
## [doc1198] enry VI , is crowned |King | of Sicily .         
## [doc1199] rd I ( Lionheart ) , |king | of England ( b. ) [ 
## [doc1199] nand III ( Saint ) , |king | of Castile and León 
## [doc1199]             Summer – |King | William Lion of Scot
## [doc1199] , John is crowned as |king | of England at Westmi
## [doc1199] rd I ( Lionheart ) , |king | of England ( b. ) [ 
## [doc1200]  from William Lion , |king | of Scotland , at Lin
## [doc1201]                      |King | John ( Lackland ) pu
## [doc1201] valid as made before |king | himself or his chief
## [doc1202] iface II ( Giant ) , |king | of Thessalonica ( d.
## [doc1202]  loyalty to Emeric , |king | of Hungary and Croat
## [doc1202]             Spring – |King | Philip II ( Augustus
## [doc1202] son ( or Sverrir ) , |king | of Norway March – Mi
## [doc1202] vember – Canute VI , |king | of Denmark ( b. ) De
## [doc1203]   Quarrel : Emeric , |King | of Hungary captures 
## [doc1203]                      |King | Aimery of Jerusalem 
## [doc1203] such as ransoming of |king | ’s soldiers captured
## [doc1203] ugas ( or Mendog ) , |king | of Lithuania ( d. ) 
## [doc1203]           In April , |King | John ( Lackland ) lo
## [doc1204]  November – Emeric , |King | of Hungary ( b. ) [ 
## [doc1204]             August – |King | Guttorm of Norway [ 
## [doc1204] ark is recognized as |king | in Norway . [ ]     
## [doc1204]  ] April – Henry I , |king | of Castile ( d. ) [ 
## [doc1204] ( d. ) [ ] January – |King | Haakon              
## [doc1204] yan is recognized as |king | of Bulgaria by Pope 
## [doc1205]  who is also crowned |king | of Germany ) in nort
## [doc1205] – Aimery of Cyprus , |king | of Jerusalem , dies 
## [doc1205] ay – Ladislaus III , |king | of Hungary and Croat
## [doc1205] rius of Montferrat , |king | of Thessalonica ( d.
## [doc1205] prus ( or Amaury ) , |king | of Jerusalem April –
## [doc1205] rius of Montferrat , |king | of Thessalonica ( d.
## [doc1205] II , brother of late |King | Emeric , is crowned 
## [doc1206] n needed ] Béla IV , |king | of Hungary and Croat
## [doc1206]                      |King | Valdemar II ( Conque
## [doc1206]                      |King | John ( Lackland ) la
## [doc1207] , Alanian prince and |king | consort [ ]         
## [doc1207] nchester ) , English |king | ( d. ) Adelasia of T
## [doc1207]                      |King | John ( Lackland ) in
## [doc1207] , Alanian prince and |king | consort [ ]         
## [doc1208]                      |King | Sverker II ( Younger
## [doc1208]  I , ( Conqueror ) , |king | of Aragon ( d. )    
## [doc1208]  by German nobles as |king | of Germany at Frankf
## [doc1208] – Philip of Swabia , |king | of Germany ( b. )   
## [doc1208] – Philip of Swabia , |king | of Germany , is assa
## [doc1209] emar III ( Young ) , |king | of Denmark ( d. ) Wa
## [doc1209]                      |King | Philip II ( Augustus
## [doc1209] east paupers because |king | went to take cranes 
## [doc1209] ancho II ( Pious ) , |king | of Portugal ( d. ) D
## [doc1210] ainst Frederick II , |king | of Sicily . [ ]     
## [doc1210] ker II ( Younger ) , |king | of Sweden October – 
## [doc1210]                      |King | Sverker II ( Younger
## [doc1210]  , a sum of money to |king | .                   
## [doc1210]                      |King | John extends his tax
## [doc1210] onation of a Swedish |king | .                   
## [doc1210] III ( Boulonnais ) , |king | of Portugal ( d. ) J
## [doc1211] n absentia as German |king | by rebellious noblem
## [doc1211]          Henry VII , |king | of Germany ( Rex Rom
## [doc1211]              March – |King | Sancho I ( Populator
## [doc1211] ho I ( Populator ) , |king | of Portugal ( b. )  
## [doc1211]         [ ] Summer – |King | John ( Lackland ) ca
## [doc1212]                      |King | John ( Lackland ) im
## [doc1213]           Hethum I , |King | of Armenia , ruler o
## [doc1213]                May – |King | John of England subm
## [doc1213]                      |King | Peter II of Aragon (
## [doc1214] Louis IX ( Saint ) , |king | of France ( d. ) [ ]
## [doc1214] ber – William Lion , |king | of Scotland ( b. ) [
## [doc1214] nso VIII ( Noble ) , |king | of Castile ( b. ) Oc
## [doc1214] on death of father , |King | Alfonso VIII ( Noble
## [doc1214]           December – |King | William Lion dies af
## [doc1214]                      |King | Philip II ( Augustus
## [doc1214]           February – |King | John ( Lackland ) la
## [doc1215] aruwa and depose its |king | , Parakrama Pandya .
## [doc1215] I ( or David Ulu ) , |king | of Georgia ( d. ) El
## [doc1215]              March – |King | John ( Lackland ) , 
## [doc1215]                      |King | Alexander II of Scot
## [doc1215]                  [ ] |King | Kalinga             
## [doc1216] hn I , son of former |King | Sverker II ( Younger
## [doc1216]  John ( Lackland ) , |king | of England ( b. )   
## [doc1216] Magna Carta , in new |king | 's name . [ ] [ ]   
## [doc1216]          Meanwhile , |King | John uses Corfe Cast
## [doc1216]   February – Leo I , |King | of Armenia ( Magnifi
## [doc1216]                May – |King | John of England asse
## [doc1216] ric X ( Knutsson ) , |king | of Sweden ( b. ) Apr
## [doc1216] c IV ( Plowpenny ) , |king | of Denmark ( d. ) Er
## [doc1217]     The - year - old |King |
## [doc1217] r Caupo of Turaida , |king | of Livonia Lembitu ,
## [doc1217] ld Haakon IV becomes |king | of Norway , followin
## [doc1217]                      |King | Andrew II of Hungary
## [doc1217]  – Henry I ( Fat ) , |king | of Cyprus ( d. ) Aug
## [doc1217]     June – Henry I , |king | of Castile and Toled
## [doc1217] ge II ( Bårdsson ) , |king | of Norway ( b.      
## [doc1217]            The young |king | begins his reign ( s
## [doc1217]          Meanwhile , |King | Hugh I of Cyprus lan
## [doc1218] reaty of Worcester : |King | Henry III writes to 
## [doc1218] Hugh I ( or Hugo ) , |king | of Cyprus ( b. )    
## [doc1218] ut ( d. ) Rudolf I , |king | of Germany ( d. ) Jo
## [doc1218] e 30,000 men ) under |King | John I of Jerusalem 
## [doc1219] eo II ( or Levon ) , |king | of Armenian Cilicia 
## [doc1219] ( or Christoffer ) , |king | of Denmark ( d. )   
## [doc1220] ded of his duties as |king | to maintain peace , 
## [doc1220]             Spring – |King | Henry III makes larg
## [doc1220]              April – |King | Frederick           
## [doc1221]    During fighting , |King | George IV himself is
## [doc1221] Alfonso X ( Wise ) , |king | of Castile ( d. ) [ 
## [doc1221]                      |King | John                
## [doc1221] est daughter of late |King | John ( Lackland ) , 
## [doc1222]  Johan Sverkersson , |king | of Sweden since ( b.
## [doc1223]               July – |King | Philip II ( Augustus
## [doc1223]  Afonso II ( Fat ) , |king | of Portugal ( b. ) M
## [doc1223] ip II ( Augustus ) , |king | of France ( b. )    
## [doc1223]              March – |King | Afonso II ( Fat ) di
## [doc1223] n Uroš I ( Great ) , |king | of Serbia ( d. ) Mar
## [doc1224]                May – |King | Louis VIII ( Lion ) 
## [doc1224] earg Ua Conchobair , |king | of Connacht ( b. ) D
## [doc1224] l hanged by order of |king | .                   
## [doc1224]           February – |King | Ferdinand III ( Sain
## [doc1225] I Narin ( Clever ) , |king | of Georgia ( d. ) Fr
## [doc1225]  Fat ) is crowned as |king | of Cyprus in Cathedr
## [doc1226] aint ) , who becomes |king | of France .         
## [doc1226]                      |King | Sancho II ( Pious ) 
## [doc1226]                      |King | Louis VIII ( Lion ) 
## [doc1226] ouis VIII ( Lion ) , |king | of France ( b. ) Nov
## [doc1228]                      |King | Sukaphaa establishes
## [doc1228]                      |King | James I ( Conqueror 
## [doc1228] V ( or Conrad II ) , |king | of Germany ( d. ) [ 
## [doc1228] an First - Crowned , |king | of Serbia October – 
## [doc1228]                      |King | Alfonso IX of León c
## [doc1229] eated and deposed as |king | of Sweden by Canute 
## [doc1229]            October – |King | Henry III calls for 
## [doc1230]       The Portuguese |king | Sancho II continues 
## [doc1230] rius of Montferrat , |king | of Thessalonica ( b.
## [doc1230] ember – Alfonso IX , |king | of León and Galicia 
## [doc1230]                      |King | Alfonso IX defeats I
## [doc1230]              April – |King | Henry III embarks fr
## [doc1231]             August – |King | Henry III orders she
## [doc1231] r – Valdemar Young , |king | of Denmark December 
## [doc1232]               July – |King | Henry III dismisses 
## [doc1232] sehold and keeper of |king | 's wardrobe .       
## [doc1232] tion for controlling |king | 's affairs .        
## [doc1232] ber – Haakon Young , |king | of Norway ( d. ) unk
## [doc1233] st – Oath of Bereg : |King | Andrew II of Hungary
## [doc1234] eacefully returns as |king | .                   
## [doc1234] cho VII ( Strong ) , |king | of Navarre April – R
## [doc1234]                      |King | Sancho              
## [doc1234] Canute II ( Tall ) , |king | of Sweden ( House of
## [doc1234]                      |King | Canute II ( Tall ) d
## [doc1234]                      |King | Andrew II of Hungary
## [doc1236]            January – |King | Henry III marries - 
## [doc1236]                      |King | Kalinga             
## [doc1237]                      |King |
## [doc1237] enne ( or John I ) , |king | of Jerusalem April B
## [doc1238] age takes place with |king | 's approval , act it
## [doc1238] I ( Law - mender ) , |king | of Norway ( d. ) May
## [doc1238]          September – |King | James I of Aragon ca
## [doc1238]  mission to European |kings| Louis IX ( Saint ) a
## [doc1239] d I ( Longshanks ) , |king | of England ( d . ) D
## [doc1239] ,500 knights ) under |King | Theobald I of Navarr
## [doc1239] t ( d. ) Stephen V , |king | of Hungary ( House o
## [doc1239]                      |King | Louis IX ( Saint ) h
## [doc1239]             Autumn – |King | Béla IV allows some 
## [doc1240]                      |King | Sancho II ( Pious ) 
## [doc1240] III ( Birgersson ) , |king | of Sweden ( d. ) Pet
## [doc1241] n royalty , Prince ( |King | ) of Halych , Duke o
## [doc1242] e 25,000 men ) under |King | Louis IX ( Saint ) d
## [doc1242] bruary – Henry VII , |king | of Germany ( b. )   
## [doc1242]                      |King | Sancho II ( Pious ) 
## [doc1242]           November – |King | Béla IV issues Golde
## [doc1243] Treaty of Bordeaux : |King | Louis IX ( Saint ) a
## [doc1243]              March – |King | Ferdinand III ( Sain
## [doc1244]                      |King | James I ( Conqueror 
## [doc1244]                      |King | Louis IX ( Saint ) f
## [doc1244]  ) Henry I ( Fat ) , |king | of Navarre ( House o
## [doc1245]                      |King | Henry III starts wor
## [doc1245] hilip III ( Bold ) , |king | of France ( d. ) Nov
## [doc1246] arian forces , under |King | Béla IV , defeat Duk
## [doc1247]             Summer – |King | Henry I ( Fat ) send
## [doc1247]               July – |King | Béla                
## [doc1247]    As a punishment , |King | James I ( Conqueror 
## [doc1248]             August – |King | Louis IX ( Saint ) l
## [doc1248] ancho II ( Pious ) , |king | of Portugal ( b. ) J
## [doc1249] uly – Alexander II , |king | of Scotland ( b. )  
## [doc1249]               July – |King | Alexander           
## [doc1249]                      |King | Afonso III ( Boulonn
## [doc1249]                May – |King | Louis IX ( Saint ) a
## [doc1249] Battle of Fossalta : |King | Enzo of Sardinia , a
## [doc1249]                      |king | 's advisers urges a 
## [doc1250] IV ( Ploughpenny ) , |king | of Denmark October –
## [doc1250]                      |King | Afonso III ( Boulonn
## [doc1250] ecomes first Swedish |king | of House of Folkung 
## [doc1250]           February – |King | Eric XI ( Eriksson )
## [doc1250] ic XI ( Eriksson ) , |king | of Sweden ( b. ) Feb
## [doc1250]              April – |King | Louis IX ( Saint ) i
## [doc1251] r to Mongols , meets |king | in Palestine , with 
## [doc1251]           December – |King | Alexander III of Sco
## [doc1252]        June – Abel , |King | of Denmark ( b. ) [ 
## [doc1252] onso X is proclaimed |king | of Castile and León 
## [doc1252]                May – |King | Ferdinand III of Cas
## [doc1253]          Meanwhile , |King | Louis IX of France (
## [doc1253]            January – |King | Henry I of Cyprus ( 
## [doc1253] Morta are crowned as |king | and queen of Lithuan
## [doc1253]             August – |King | Henry III leads an e
## [doc1253] iface II ( Giant ) , |king | of Thessalonica ( b.
## [doc1253] ber – Wenceslaus I , |king | of Bohemia ( b. )   
## [doc1253]  – Henry I ( Fat ) , |king | of Cyprus ( b. ) Apr
## [doc1254]           February – |King | Louis IX ( Saint ) s
## [doc1254]                      |King | Henry III grants his
## [doc1254]            [ ] May – |King | Conrad              
## [doc1254]  ) May – Conrad IV , |king | of Germany en Sicily
## [doc1254] wn before becoming a |king | .                   
## [doc1255] of Nassau-weilburg , |king | of Germany ( d. ) Al
## [doc1255]                      |King | Afonso III ( Boulonn
## [doc1256] liam II of Holland , |king | of Germany ( b. ) Fe
## [doc1257] aakon Young , junior |king | of Norway ( b. ) May
## [doc1257]                      |King | Henry III orders pro
## [doc1257] ober – Przemysl II , |king | of Poland ( d. ) Agn
## [doc1258]                May – |King | Henry III accepts de
## [doc1258] rick II , is crowned |king | of Sicily at Palermo
## [doc1258]                      |King | Louis IX ( Saint ) s
## [doc1259] anders [ ] [ ] May – |King | Christopher I of Den
## [doc1261] k ( Elbow - High ) , |king | of Poland ( d. ) Feb
## [doc1261] is I ( Poet King ) , |king | of Portugal ( d. ) A
## [doc1261]               June – |King | Henry III obtains a 
## [doc1261] ebruary – Otto III , |king | of Hungary and Croat
## [doc1262]                      |King | Mindaugas renounces 
## [doc1262]                      |King | Alfonso X ( Wise ) o
## [doc1262]                      |King | Mangrai of Lan Na Ki
## [doc1262]       IV ( Cuman ) , |king | of Hungary ( d. ) Oc
## [doc1263] g ) , only Christian |king | of Lithuania , is as
## [doc1263]                      |King | Haakon              
## [doc1263] Haakon IV ( Old ) as |king | of Norway .         
## [doc1263]                      |King | Alfonso X ( Wise ) c
## [doc1263]  Haakon IV ( Old ) , |king | of Norway ( b . )   
## [doc1263] ugas ( or Mendog ) , |king | of Lithuania ( b. ) 
## [doc1263]                      |King | James I ( Conqueror 
## [doc1264] king Simon uncrowned |king | of England for month
## [doc1264]        [ ] January – |King | Louis IX ( Saint ) i
## [doc1265]  – Magnús Óláfsson , |King | of Mann and Isles [ 
## [doc1266]  – Treaty of Perth : |King | Alexander III agrees
## [doc1266]  II ( or Het 'um ) , |king | of Cilician Armenia 
## [doc1266]                      |King | James I of Aragon ( 
## [doc1267] eaty of Montgomery : |King | Henry III of England
## [doc1267]  Hugh II of Cyprus , |king | of Cyprus and regent
## [doc1267]           February – |King | Afonso III of Portug
## [doc1268]                      |King |
## [doc1269]                      |King | Ottokar II inherits 
## [doc1269]               June – |King | Louis IX ( Saint ) o
## [doc1270]      Before August – |King | Louis IX of France l
## [doc1270]                      |King |
## [doc1270]      David VII Ulu , |King | of Georgia ( b. ) [ 
## [doc1270]                      |King | Louis IX of France (
## [doc1270]               August |King | Louis IX of France (
## [doc1271] rmac MacCarthy Mor , |king | of Desmond ( d. ) Ei
## [doc1271] r – Charles Martel , |king | of Hungary ( d. ) Se
## [doc1272]           November – |King | Henry III dies at pa
## [doc1272]             August – |King |
## [doc1272] vember – Henry III , |king | of England ( b. )   
## [doc1272]                      |King | Afonso III ( Boulonn
## [doc1272]            [ ] May – |King | Hugh III ( Great ) s
## [doc1272]         I of Anjou , |king | of Sicily , occupies
## [doc1272]          Stephen V , |king | of Hungary ( b. ) Au
## [doc1272] er – Frederick III , |king | of Sicily ( d. ) Ama
## [doc1272] – Enzo of Sardinia , |king | of Sardinia ( b. ) M
## [doc1273]  ( d. ) David VIII , |king | of Georgia ( House o
## [doc1273] ndidate Ottokar II , |king | of Bohemia , ending 
## [doc1274] cho I ( Peaceful ) , |king | of Majorca ( d. ) Se
## [doc1274] Land , to be crowned |king | of England , two yea
## [doc1274] Robert I ( Bruce ) , |king | of Scotland ( d. ) J
## [doc1274] I ( or Henry III ) , |king | of Navarre ( House o
## [doc1274] tion of Ottokar II , |king | of Bohemia , who has
## [doc1275] ern Italy Rudolf I , |king | of Germany . [ ] Ram
## [doc1275] n and is elected new |king | of Sweden at Stones 
## [doc1275]             Spring – |King | Edward I ( Longshank
## [doc1275]                      |King | Valdemar Birgersson 
## [doc1276]  ) Robert of Anjou , |king | of Naples ( House of
## [doc1276] r – Christopher II , |king | of Denmark ( d. )   
## [doc1276]             Spring – |King | Edward I ( Longshank
## [doc1276] es I ( Conqueror ) , |king | of Aragon ( b. ) Aug
## [doc1276]                      |King | Rudolf I declares wa
## [doc1277] at I ( or Sempad ) , |king | of Cilician Armenia 
## [doc1277] empts of Charles I , |king | of Sicily , to organ
## [doc1277] n Uroš I ( Great ) , |king | of Serbia May – Nich
## [doc1277] ) Philip of Sicily , |king | of Sardinia ( House 
## [doc1277]  March – Charles I , |king | of Sicily , buys tit
## [doc1278] ohemian nobleman and |king | ( b. ) November – Ba
## [doc1278] ntrol of Charles I , |king | of Sicily .         
## [doc1279] III ( Boulonnais ) , |king | of Portugal ( b. )  
## [doc1279] am Khamhaeng becomes |king | of Phra Ruang Dynast
## [doc1280]             Birger , |King | of Sweden , Swedish 
## [doc1281] at ( d. ) Rudolf I , |king | of Bohemia ( House o
## [doc1281] thorizes Charles I , |king | of Sicily , to make 
## [doc1281] ntact with Leo III , |king | of Cilician Armenia 
## [doc1282]                      |King | Stefan Dragutin brea
## [doc1282] ishop ( d. ) Oshin , |king | of Cilician Armenia 
## [doc1282]           December – |King | Rudolf I invests his
## [doc1282]                      |King | Denis I ( Poet King 
## [doc1283]                      |King | Jayavarman          
## [doc1284]                      |King | Edward I ( Longshank
## [doc1284]  II ( Caernarfon ) , |king | of England ( d. ) [ 
## [doc1284] Hugh III ( Great ) , |king | of Cyprus ( b. ) Apr
## [doc1284]                      |King | Charles II ( Lame ) 
## [doc1284]                      |King | Rudolf              
## [doc1284]              April – |King | Alfonso X ( Wise ) f
## [doc1284]                      |King | Peter III ( Great ) 
## [doc1285] lois , is crowned as |king | of Aragon ( under va
## [doc1285] anuary – Charles I , |king | of Sicily ( House of
## [doc1285] tober – Philip III , |king | of France ( House of
## [doc1285] eral ) , who becomes |king | of Aragon .         
## [doc1285]                      |King | Sancho              
## [doc1285] ber – Ferdinand IV , |king | of Castile and León 
## [doc1286] ric V ( Klipping ) , |king | of Denmark ( b. ) [ 
## [doc1286]                      |King | Edward I ( Longshank
## [doc1286]  ) – Alexander III , |king | of Scotland ( b. ) [
## [doc1286] ngdom of Muang Sua , |King | Panya Leng is overth
## [doc1286]              March – |King | Alexander           
## [doc1286]  Henry II is crowned |king | of Jerusalem at Tyre
## [doc1286]  ( Fair ) is crowned |king | of France at Reims .
## [doc1287]        He is crowned |king | on April and declare
## [doc1288]        In response , |King | Alfonso III ( Libera
## [doc1288] n ( d. ) Charles I , |king | of Hungary ( House o
## [doc1289]     Wenceslaus III , |king | of Hungary and Croat
## [doc1289]  X ( Quarrelsome ) , |king | of France ( d. ) Oct
## [doc1289] ir ( or Handsome ) , |king | of Germany ( d. ) Jo
## [doc1289]     The - year - old |King | Henry II sends his y
## [doc1289]             Summer – |King | Edward I ( Longshank
## [doc1289] ius II ( Devoted ) , |king | of Georgia ( b. )   
## [doc1290]                      |King | Edward I ( Longshank
## [doc1290]       IV ( Cuman ) , |king | of Hungary and Croat
## [doc1290] I ) ( Birgersson ) , |king | of Sweden ( b. ) Dec
## [doc1290]               July – |King | Ladislaus           
## [doc1290] I ) ( Birgersson ) , |king | of Sweden ( b. )    
## [doc1290] ectly to his lord or |king | .                   
## [doc1291] r II ) ( Liberal ) , |king | of Aragon ( b. ) [ ]
## [doc1291] fonso IV ( Brave ) , |king | of Portugal ( d. ) [
## [doc1291]                  The |kings| Sancho IV ( Brave ) 
## [doc1291]    July – Rudolf I , |king | of Germany ( House o
## [doc1291]                      |King | Henry II escapes , b
## [doc1291] ll ( or Culanagh ) , |king | of Tír Eoghain ( b. 
## [doc1291]                      |King | Andrew III ( Venetia
## [doc1292]                      |King | Mangrai ( Great ) of
## [doc1293] edlim Ó Conchobair , |King | of Connacht ( d. ) [
## [doc1293]     David VI Narin , |King | of Georgia ( b. ) [ 
## [doc1294] o finance war , both |kings| lay taxes on clergy 
## [doc1294]       John Balliol , |King | of Scotland , decide
## [doc1294] oniface VIII insists |kings| gain papal consent f
## [doc1295] les Martel , titular |king | of Hungary ( b. )   
## [doc1295]                      |King | Jayavarman VIII is o
## [doc1295]       [ ] November – |King | Edward I ( Longshank
## [doc1295]              April – |King | Sancho IV ( Brave ) 
## [doc1295] zemysl II is crowned |king | of Poland at Gniezno
## [doc1295] ancho IV ( Brave ) , |king | of Castile ( b. ) Ma
## [doc1296] Capture of Berwick : |King | Edward              
## [doc1296] huzan [ ] February – |King | Przemysl II of Polan
## [doc1296]       August – Blind |King | John I of Bohemia ( 
## [doc1296]          [ ] April – |King | Mangrai Great of Ngo
## [doc1296]  , self - proclaimed |king | of Pegu , is defeate
## [doc1297]          [ ] April – |King | Edward I ( Longshank
## [doc1297]          July – Late |king | Louis IX ( Saint ) i
## [doc1297] d by future Scottish |king | Robert I ( Bruce ) a
## [doc1297] Kings Denis I ( Poet |King | ) and - year - old F
## [doc1298]  – Adolf of Nassau , |king | of Germany ( House o
## [doc1298]             Summer – |King | Edward I ( Longshank
## [doc1298] s III ( or Toros ) , |king | of Cilician Armenia 
## [doc1298]        In response , |King | Eric VI ( Menved ) t
## [doc1299] ence is uncovered of |King | Edward I ( Longshank
## [doc1299] when flagship , with |King | Frederick II onboard
## [doc1299] c II ( Magnusson ) , |king | of Norway ( b. )    
## [doc1299] onso IV ( Gentle ) , |king | of Aragon ( d. ) unk
## [doc1299]                      |King | Hethum II leads Arme
## [doc1300]     He is crowned as |king | and reunites Polish 
## [doc1300]                      |King | Philip IV ( Fair ) b
## [doc1300]                  The |king | 's brother , Charles
## [doc1300]                      |King | Edward I ( Longshank
## [doc1300] a small territory as |king | 's direct representa
## [doc1301] w III ( Venetian ) , |king | of Hungary ( b. ) [ 
## [doc1301] ected and crowned as |king | of Hungary and Croat
## [doc1301] Valois , son of late |King | Philip III ( Bold ) 
## [doc1302] aldemar Birgersson , |king | of Sweden ( b. ) Dec
## [doc1302]             Spring – |King | Edward I ( Longshank
## [doc1302]                      |King | Charles II ( Lame ) 
## [doc1303]     The - year - old |King | Ferdinand IV ( summo
## [doc1303]  – Treaty of Paris : |King | Philip IV ( Fair ) s
## [doc1304]     The - year - old |King | Ferdinand IV ( summo
## [doc1305] ne – Wenceslaus II , |king | of Bohemia and Polan
## [doc1305]           Albert I , |king | of Germany , forces 
## [doc1305]               June – |King | Wenceslaus II dies ,
## [doc1305]          September – |King | Edward I ( Longshank
## [doc1306] ert Bruce is crowned |king | of Scotland by Bisho
## [doc1306] t – Wenceslaus III , |king | of Hungary , Croatia
## [doc1306]             Spring – |King | Philip IV ( Fair ) t
## [doc1307] d I ( Longshanks ) , |king | of England ( b. ) [ 
## [doc1307] ter he is proclaimed |king | and continues north 
## [doc1307]             Spring – |King |
## [doc1307]           In Paris , |king | 's inquisitors tortu
## [doc1307]            October – |King | Philip IV ( Fair ) o
## [doc1307]               July – |King | Edward I of England 
## [doc1307] obleman , knight and |king | ( b. ) [ ]          
## [doc1308] eman , pretender and |king | ( b. ) May – Amadeus
## [doc1308]            January – |King | Edward II marries - 
## [doc1308]                      |King | Ferdinand IV ( summo
## [doc1308] hwarzburg , disputed |king | of Germany , lay sie
## [doc1308]  Yuri I of Galicia , |king | of Ruthenia ( House 
## [doc1308] ers fugitive Vaghela |king | Karna .             
## [doc1308] ld Charles Robert as |king | of Hungary and Croat
## [doc1308]                      |King | Philip IV ( Fair ) p
## [doc1308] ld Charles Robert as |king | of Hungary and Croat
## [doc1308]              March – |King | Denis I ( Poet King 
## [doc1309]                      |King | Edward              
## [doc1309] alienate nobles from |king | .                   
## [doc1309]                      |King | Denis I ( Poet King 
## [doc1310] imir III ( Great ) , |king | of Poland ( d. ) Nov
## [doc1310]                      |King | Edward II invades Sc
## [doc1311] ) Mangrai , founding |king | of Lan Na ( b. ) pro
## [doc1311]              March – |King | Ferdinand IV ( Summo
## [doc1311] ) Mangrai , founding |king | of Lan Na ( b. )    
## [doc1311] nso XI ( Avenger ) , |king | of Castile ( d. ) un
## [doc1312] ember – Edward III , |king | of England and Irela
## [doc1312]          September – |King | Ferdinand IV ( Summo
## [doc1312] ber – Ferdinand IV , |king | of Castile and León 
## [doc1312]                      |King | Edward              
## [doc1313]                      |King | Robert I ( Bruce ) c
## [doc1313] ther of - year - old |King | Alfonso XI ( Avenger
## [doc1313]                      |King | Stefan Milutin , one
## [doc1313] ntine III ( or V ) , |king | of Cilician Armenia 
## [doc1313] of Naples ( Wise ) , |king | of Naples .         
## [doc1314] Philip IV ( Fair ) , |king | of France ( House of
## [doc1314] demar III ( or V ) , |king | of Denmark ( House o
## [doc1314]         [ ] August – |King | Haakon V ( Magnusson
## [doc1314] ol ( Toom Tabard ) , |king | of Scotland ( House 
## [doc1314] demar III ( or V ) , |king | of Denmark ( House o
## [doc1314] ol ( Toom Tabard ) , |king | of Scotland ( House 
## [doc1315] erlands , as well as |King | Edward II , to suppo
## [doc1315] ean crown prince and |king | ( d. ) April – James
## [doc1315] mmunity depends upon |king | for right to protect
## [doc1315]             August – |King | Louis X ( Quarrelsom
## [doc1316]  March – Robert II , |king | of Scotland ( House 
## [doc1316]  X ( Quarrelsome ) , |king | of France ( b. )    
## [doc1316] n I ( Posthumous ) , |king | of France November –
## [doc1316] gnus IV ( or VII ) , |king | of Sweden ( House of
## [doc1316] gnus IV ( or VII ) , |king | of Sweden ( House of
## [doc1316]  – Stefan Dragutin , |king | of Serbia ( House of
## [doc1316] n I ( Posthumous ) , |king | of France ( d. ) dat
## [doc1316]               June – |King | Louis X ( Quarrelsom
## [doc1317]  ( Posthumous ) , as |king | of France ( and Phil
## [doc1317]                      |King | Eric VI , his ally D
## [doc1318] absence of a Swedish |king | .                   
## [doc1318]             Spring – |King | Birger Magnusson is 
## [doc1319] on V ( Magnusson ) , |king | of Norway ( b. ) [ ]
## [doc1319] – John II ( Good ) , |king | of France ( d. )    
## [doc1319]       After battle , |King | Edward II is forced 
## [doc1319] Eric VI ( Menved ) , |king | of Denmark ( b. )   
## [doc1319] ternal grandfather , |King | Haakon V ( Magnusson
## [doc1319] ptember – Peter IV , |king | of Aragon ( d. ) dat
## [doc1319]             Summer – |King | Denis I ( Poet King 
## [doc1319] Magnus IV is elected |king | of Sweden , establis
## [doc1320] ust ) ( or Cruel ) , |king | of Portugal ( d. ) M
## [doc1320] oet ( d. ) Louis I , |king | of Naples ( Capetian
## [doc1320] oet ( d. ) Louis I , |king | of Naples ( Capetian
## [doc1320]                      |King | James II ( Just ) , 
## [doc1320]  I ( Short ) becomes |king | of a reunited Poland
## [doc1321]                      |King | Philip V ( Tall ) or
## [doc1321]         [ ] August – |King | Edward              
## [doc1321] – Birger Magnusson , |king | of Sweden ( House of
## [doc1321] int King ) , Serbian |king | ( b. ) [ ]          
## [doc1322] Serbian nobleman and |king | ( b. ) Theodore Svet
## [doc1322] III Decanski becomes |king | of Serbia , having d
## [doc1322] ronation for a young |king | in Serbia , Decanski
## [doc1322] Serbian nobleman and |king | ( b. ) Theodore Svet
## [doc1322]  Philip V ( Tall ) , |king | of France ( b. ) Jan
## [doc1322] mes co-ruler ( young |king | ) .                 
## [doc1322] e of Burton Bridge : |King | Edward              
## [doc1322]            January – |King | Philip V ( Tall ) di
## [doc1323] h his brother Leo II |King | Leo II of Galicia , 
## [doc1323]                May – |King | Edward              
## [doc1323]                      |King | Andrew of Galicia , 
## [doc1324] ort of Sweden ( b. ) |King | Sancho of Majorca ( 
## [doc1324]              March – |King | David II of Scotland
## [doc1324] xcommunicates German |king | Louis IV , as Louis 
## [doc1325] ser ( d. ) January – |King | Dinis of Portugal ( 
## [doc1326]  Morea ( d. ) Seii , |King | of Chuzan ( d. ) Sim
## [doc1326]              March – |King | Louis I of Hungary (
## [doc1326]               Seii , |King | of Chuzan ( d. )    
## [doc1327] pitaller September – |King | Edward II of England
## [doc1327] vember or November – |King | James II of Aragon (
## [doc1328] nce ( d. ) October – |King | Peter I of Cyprus ( 
## [doc1328]         ) February – |King | Charles IV of France
## [doc1328]                May – |King | Philip VI of France 
## [doc1329] une – Robert Bruce , |King | of Scotland ( b. ) A
## [doc1329]           February – |King | John of Bohemia ( of
## [doc1330]            October – |King | Edward III of Englan
## [doc1331] san declares himself |king | of Serbia .         
## [doc1332] ror ( d. ) October – |King | Charles II of Navarr
## [doc1332] of Scotland August – |King | Christopher II of De
## [doc1332] lliol crowns himself |King | of Scotland .       
## [doc1333] an friar and March – |King | Wladyslaw I of Polan
## [doc1333]               June – |King | Edward III of Englan
## [doc1334] oy ( d . ) January – |King | Henry II of Castile 
## [doc1334] avanese ruler ( d. ) |King | James I of Cyprus ( 
## [doc1335] ic , de jure Serbian |king | Milica , wife of Pri
## [doc1335]      Georgians under |King | George V ( Brilliant
## [doc1339]     Erik Magnusson , |king | of parts of Sweden 1
## [doc1339]     Erik Magnusson , |king | of parts of Sweden 1
## [doc1340] rk , son of deceased |King | Christopher II , is 
## [doc1340]            January – |King | Edward III of Englan
## [doc1340] rk , son of deceased |King | Christopher II , is 
## [doc1340] alado in Spain : The |kings| of Castile and Portu
## [doc1340] August – Haakon VI , |king | of Norway 1355–1380 
## [doc1340] e , Chief Justice of |King | Edward III of Englan
## [doc1341] ederick III Simple , |King | of Sicily ( d. ) Nov
## [doc1341] cily ( b. ) August – |King | Levon IV of Armenia 
## [doc1342]  father , Peter II , |king | of Sicily and duke o
## [doc1342]               July – |King | Charles             
## [doc1342] ly – Louis I becomes |king | of Hungary .        
## [doc1343]    The Four Estonian |kings| are murdered , at ne
## [doc1344] l – Constantine II , |King | of Armenia , is kill
## [doc1344] l – Constantine II , |King | of Armenia ( Gosdant
## [doc1344]                      |King | Peter IV of Aragon d
## [doc1344]                      |King | Edward III of Englan
## [doc1345]     Finally , it was |King | George Brilliant ( 1
## [doc1345] lbach Ó Conchobair , |King | of Connacht John Vat
## [doc1345] lbach Ó Conchobair , |King | of Connacht John Vat
## [doc1345] len of Bosnia ( d. ) |King | Charles III of Naple
## [doc1345] ermission by Swedish |king | .                   
## [doc1345]            October – |King | Fernando I of Portug
## [doc1346] e , Jean de France , |King | Philippe 's son , be
## [doc1346] les was chosen Roman |king | in opposition to Lou
## [doc1346]            On July , |King | Edward III crossed E
## [doc1346]           The French |king | , Philippe VI , dest
## [doc1346]  some as a priest 's |king | ( Pfaffenkönig ) .  
## [doc1346]           The French |king | mounted a defence ne
## [doc1346]                      |King |
## [doc1346]                  The |King | of Denmark even made
## [doc1347]                      |King | Phillip of France me
## [doc1347] in November , French |King | Phillip was told in 
## [doc1347]                      |King | Phillip of France me
## [doc1349] Schwarzburg , German |king | ( b. )              
## [doc1351]                      |King | Gongmin ascends in G
## [doc1354]  vassal to Hungarian |king | Louis I .           
## [doc1355]            January – |King | Alphonso IV of Portu
## [doc1356] II proclaims himself |king | of Sweden , in oppos
## [doc1357] infanta ( b. ) May – |King | Afonso IV of Portuga
## [doc1357] urrough - Kavanagh , |King | of Leinster ( d. ) H
## [doc1357] son is recognized as |king | of most of Sweden , 
## [doc1358] tile ( d. ) August – |King | John I of Castile ( 
## [doc1358]                    – |King | Haakon              
## [doc1359] e – Erik Magnusson , |king | of Sweden since ( b.
## [doc1360]  same year by former |king | , Muhammed V .      
## [doc1360] avid IX of Georgia , |King | of Georgia Geoffrey 
## [doc1360] avid IX of Georgia , |King | of Georgia Geoffrey 
## [doc1360]                      |King | Valdemar Atterdag of
## [doc1361]                      |King | Charles III of Navar
## [doc1361]         Wenceslaus , |King | of Romans , King of 
## [doc1361]                      |King | Valdemar            
## [doc1361]  vassal ruler ( d. ) |King | Charles III of Navar
## [doc1362]  , proclaims himself |king | of Sweden in opposit
## [doc1362]           February – |King | Haakon              
## [doc1362]  – Constantine III , |King | of Armenia ( b. ) da
## [doc1362] r , Queen consort of |king | David II of Scotland
## [doc1364] ician ( d. ) April – |King | John II of France ( 
## [doc1364]     February – Joint |kings| Magnus Eriksson and 
## [doc1365] journey of Majapahit |king | , Hayam Wuruk , his 
## [doc1365] U of Goryeo , Korean |king | ( d. ) date unknown 
## [doc1367]                      |King | Peter I of Portugal 
## [doc1367] tician ( d. ) June – |King | Taejong of Joseon , 
## [doc1367]            January – |King | Richard II of Englan
## [doc1368]                  The |King | of Norway sends last
## [doc1368] or ( d. ) December – |King | Charles VI of France
## [doc1369]                      |King | Charles V of France 
## [doc1369]                      |King | Constantine I of Geo
## [doc1369] ary ( d. ) January – |King | Peter I of Cyprus ( 
## [doc1369] amathibodi I , first |king | of Ayutthaya ( b. ) 
## [doc1370]  Casimir III Great , |king | of Poland , dies as 
## [doc1370]                      |King | Olav IV of Norway ( 
## [doc1370]  Casimir III Great , |King | of Poland ( b. ) Dec
## [doc1370]                      |King | Olav IV of Norway ( 
## [doc1371] rnjavcevic , Serbian |king |
## [doc1371] becomes first Stuart |king | of Scotland , after 
## [doc1372] agrat I of Imereti , |King | of Georgia          
## [doc1373] own Constantine IV , |King | of Armenia ( assassi
## [doc1373]     Constantine IV , |King | of Armenia ( assassi
## [doc1374]            October – |King | Gongmin of Goryeo is
## [doc1374]            October – |King | Gongmin of Goryeo ( 
## [doc1374] r – Magnus Ericson , |king | of Sweden ( b. ) dat
## [doc1375]      Lan Kham Deng , |King | of Lan Xang 1416– ( 
## [doc1375]            October – |King | Valdemar IV of Denma
## [doc1375]      Lan Kham Deng , |King | of Lan Xang 1416– ( 
## [doc1375] known Adityawarman , |king | of Malayapura Margar
## [doc1375]           The future |King | John I of Castile ma
## [doc1375] ruler Adityawarman , |king | of Malayapura Margar
## [doc1377] – Frederick Simple , |King | of Sicily ( b. )    
## [doc1377]  of Lithuania June – |King | Edward III of Englan
## [doc1377] ard III , is crowned |king | of England .        
## [doc1377]           February – |King | Ladislaus of Naples 
## [doc1377]                      |King | U of Goryeo adopts M
## [doc1379]                May – |King | Henry II of Castile 
## [doc1380]          September – |King | Charles V of France 
## [doc1380] uitl II , Tlatoani ( |king | ) of Tenochtitlan ( 
## [doc1380] mathematician ( d. ) |King | Lukeni lua Nimi of K
## [doc1380] ry ( d. ) November – |King | Ferdinand I of Arago
## [doc1380] mathematician ( d. ) |King | Lukeni lua Nimi of K
## [doc1381]                      |King | Richard             
## [doc1382]  of Sistan October – |King | Peter II of Cyprus O
## [doc1382]  Eric of Pomerania , |King | of Norway , Sweden a
## [doc1382]  England by marrying |King | Richard II ; marriag
## [doc1382]          September – |King | Louis I of Hungary (
## [doc1383]            October – |King | Fernando I of Portug
## [doc1383] in Emperor October – |King | Fernando I of Portug
## [doc1383]                May – |King | John I of Castile an
## [doc1384]          Liubartas , |King | of Galicia Muhammad 
## [doc1385]             August – |King | Richard II of Englan
## [doc1386] ugust or September – |King | Henry V of England (
## [doc1386]                May – |King | John                
## [doc1387] of Hungary January – |King | Charles II of Navarr
## [doc1387] sman ( b. ) August – |King | Olaf IV of Norway / 
## [doc1387]      August – Olaf , |King | of Norway and Denmar
## [doc1388]                      |King | U is forced from pow
## [doc1388] rthrows Tran Hien as |King | of Vietnam .        
## [doc1388] for a loan to Polish |king | .                   
## [doc1389] U of Goryeo , Korean |king | ( b. )              
## [doc1389] U of Goryeo , Korean |king | ( b. ) date unknown 
## [doc1389] yeo , deposed Korean |king | ( b. )              
## [doc1389] yeo , deposed Korean |king | ( b. )              
## [doc1389] cceeds Kade Alunu as |King | of Kanem - Bornu Emp
## [doc1389] ion in Korea ( – ) : |King |
## [doc1389] Wallachia and Polish |king | Wladyslaw II Jagiell
## [doc1390] of Hereford ( future |King | Henry IV of England 
## [doc1390] izond ( b. ) April – |King | Robert II of Scotlan
## [doc1390]            October – |King | John                
## [doc1391]   October – Edward , |King | of Portugal ( d. ) N
## [doc1391]              March – |King |
## [doc1392]                      |King | Jogaila of Poland an
## [doc1393]           November – |King | Leo V of Armenia ( b
## [doc1393]                      |King | Stjepan Dabiša of Bo
## [doc1393] pite his treaty with |king | of Poland , Roman I 
## [doc1393]                      |King | James I of Cyprus in
## [doc1394]          September – |King | Charles VI of France
## [doc1394] lhi Sultanate Former |King | Gongyang of Goryeo (
## [doc1398]            October – |King | Taejo of Joseon abdi
## [doc1398]            September |King | Richard             
## [doc1398]                      |King | Richard             
## [doc1399] y Bolingbroke as new |king | of England .        
## [doc1399]                      |King | Jogaila becomes sole
## [doc1399] , after overthrowing |King | Louis II .          
## [doc1400] chard II restored as |king | .                   
## [doc1400]         It is likely |King | Henry IV ordered his
## [doc1400] ck -Lüneburg , rival |King | of Romans June – Jan
## [doc1400]           February – |King | Richard II of Englan
## [doc1400] modern - day Korea , |King | Jeongjong of Joseon 
## [doc1401] an pirate November – |King | Tarabya of Ava ( b. 
## [doc1401]             Rupert , |King | of Germany , is crow
## [doc1402]                      |King |
## [doc1402]                      |King | Jogaila of Poland– L
## [doc1403] le ( d. ) February – |King | Charles VII of Franc
## [doc1403]           March – As |King | Martin              
## [doc1403] , an ambassador from |king | of Castile to Timur 
## [doc1403] ttle of Shrewsbury : |King | Henry               
## [doc1403]           February – |King | Henry               
## [doc1404] eds Stefan Ostoja as |King | of Bosnia .         
## [doc1405]              March – |King | John II of Castile (
## [doc1406]           December – |King | Henry III of Castile
## [doc1406]              April – |King | Robert III of Scotla
## [doc1408]      Karl Knutsson , |King | of Sweden ( d . ) Fe
## [doc1409]               July – |King | Martin              
## [doc1409] ry – René of Anjou , |king | of Naples ( d. ) [ ]
## [doc1409] pire fleet , deposes |king | of Sri Lanka .      
## [doc1411] d presents Sinhalese |king | , captured during Mi
## [doc1411]          September – |King | Henry               
## [doc1411] , ruler of Moravia , |King | of Romans February –
## [doc1412] ekt of Mecklenburg , |king | of Sweden 1364–1389 
## [doc1414] utenant of Ireland , |King | of Isle of Man ( b. 
## [doc1414] utenant of Ireland , |King | of Isle of Man ( b. 
## [doc1414]             August – |King | Ladislaus of Naples 
## [doc1414] nt Yeshes title of a |king | , upon a return visi
## [doc1415] aen Phaeo , Lan Xang |king | ( d. ) Benedetto Acc
## [doc1415] aen Phaeo , Lan Xang |king | ( d. ) April – Manue
## [doc1417]             August – |King | Henry V of England b
## [doc1417] urrough - Kavanagh , |King | of Leinster ( b. )  
## [doc1418]                      |King |
## [doc1418]  John II of Cyprus , |King | of Cyprus and Armeni
## [doc1418]          September – |King | Taejong ( r. 1400-14
## [doc1419] ugust – Wenceslaus , |King | of Romans , King of 
## [doc1420]                      |King | Lukeni lua Nimi of K
## [doc1420] dominant in France , |King | Charles VI of France
## [doc1420]                      |King | Lukeni lua Nimi of K
## [doc1420] eorge of Podebrady , |King | of Bohemia ( d. ) [ 
## [doc1421] n ( d . ) December – |King | Henry VI of England 
## [doc1422]                      |King | Charles VI of France
## [doc1422] undy ( b. ) August – |King | Henry V of England (
## [doc1423] of House of Valois , |King | of France from to ( 
## [doc1424] lar ( d. ) October – |King | Wladyslaw III of Pol
## [doc1425]        ) September – |King | Charles III of Navar
## [doc1426]                      |King | Janus of Cyprus is d
## [doc1426] stian of Oldenburg , |King | of Denmark 1448– , o
## [doc1427] simir IV Jagiellon , |King | of Poland ( d. ) dat
## [doc1430] ses ( d. ) October – |King | James II of Scotland
## [doc1432]                      |King | Afonso V of Portugal
## [doc1433]  ( b. ) [ ] August – |King | John I of Portugal (
## [doc1434] ing to deposition of |king | .                   
## [doc1434]             August – |King | Eric of Pomerania is
## [doc1434]           November – |King | Louis III of Anjou (
## [doc1434]               June – |King | Wladislaus II of Pol
## [doc1435] nia is reinstated as |king | of Sweden , only bri
## [doc1435]  ) , in absence of a |king | , on January .      
## [doc1435] tervention of Polish |king | .                   
## [doc1436]  again reinstated as |king | of Sweden .         
## [doc1437]           February – |King | James I of Scotland 
## [doc1438] September – Edward , |King | of Portugal ( b. )  
## [doc1438]  Eric of Pomerania , |King | of Sweden , Denmark 
## [doc1438]  Eric of Pomerania , |King | of Sweden , Denmark 
## [doc1439]  This measure grants |king | exclusive right to r
## [doc1439]  Eric of Pomerania , |King | of Sweden , Denmark 
## [doc1440] s , as newly elected |king | of Denmark Christoph
## [doc1441]  Danjong of Joseon , |King | of Joseon ( d. ) Nov
## [doc1441]                      |King | 's College , Cambrid
## [doc1442] on proclaims himself |King | of Naples .         
## [doc1442] e ( d. ) [ ] April – |King | Edward IV of England
## [doc1443]                      |King |
## [doc1444]           November – |King | Wladyslaw III of Pol
## [doc1448]                      |King | Alphonso II of Naple
## [doc1448] stopher of Bavaria , |King | of Denmark , Norway 
## [doc1448] stopher of Bavaria , |King | of Denmark , Norway 
## [doc1448] s publicly hailed as |king | at Mora Stones , and
## [doc1449]                      |King | Afonso V of Portugal
## [doc1452] Siena ( d. ) March – |King | Ferdinand           
## [doc1452] f Aragon , Aragonese |king | and first king of a 
## [doc1452]            October – |King | Richard III of Engla
## [doc1452] r ( d. ) [ ] April – |King | Frederick of Naples 
## [doc1454]                      |King |
## [doc1454] of Canterbury July – |King | John II of Castile (
## [doc1455]      Forces loyal to |King | James II of Scotland
## [doc1455]                    ) |King | John II of Portugal 
## [doc1455]                March |King | John II of Portugal 
## [doc1456]      Vladislaus II , |king | of Bohemia , Hungary
## [doc1457]              March – |King | James II of Scotland
## [doc1457] ristian I is elected |king | of Sweden , ending w
## [doc1457] al ( d . ) January – |King |
## [doc1457]           November – |King | Ladislaus Posthumus 
## [doc1457]  Danjong of Joseon , |King | of Joseon ( b. ) dat
## [doc1458] of Podebrady becomes |king | of Bohemia .        
## [doc1458] ias Corvinus becomes |king | of Hungary , at age 
## [doc1458]               June – |King | Alfonso V of Aragon 
## [doc1458]            October – |King | Afonso V of Portugal
## [doc1459]                      |King | Stephen Thomas of Bo
## [doc1459] an ( d. ) December – |King | John I Albert of Pol
## [doc1459]  Eric of Pomerania , |King | of Norway , Denmark 
## [doc1460]             August – |King | James II of Scotland
## [doc1460]              March – |King | Christian I of Denma
## [doc1461]  , Prince of Viana , |King | of Navarre ( b. )   
## [doc1461] les VII of France as |king | ( reigns until ) .  
## [doc1461] lexander Jagiellon , |King | of Poland ( d . ) [ 
## [doc1461]               July – |King | Charles VII of Franc
## [doc1462] ouis XII of France , |King | of France ( 1498– ) 
## [doc1462]                      |King |
## [doc1463]  ) Ponhea Yat , last |king | of Khmer Empire and 
## [doc1463]  ) Ponhea Yat , last |king | of Khmer Empire and 
## [doc1463] int ( b. ) [ ] May – |King | Stephen Tomaševic of
## [doc1465]        July – Former |King | Henry VI of England 
## [doc1467]                      |King | Matthias Corvinus fo
## [doc1468]     Sejo of Joseon , |King | of Joseon ( b. )    
## [doc1468] t date , Sonni Ali , |king | of Songhai Empire , 
## [doc1468] er Harlech Castle to |King | Edward IV of England
## [doc1469] hor ( d. ) [ ] May – |King | Manuel              
## [doc1469]                      |King | Yejong of Joseon ( b
## [doc1469] burg ( d. ) August – |King | Ferdinand II of Napl
## [doc1471] use of Commons May – |King | Henry VI of England 
## [doc1471]                      |King | Edward defeats a Lan
## [doc1471]            October – |King | Frederick I of Denma
## [doc1471]             August – |King | Afonso V of Portugal
## [doc1471] n , last independent |King | of Champa Shin Sawbu
## [doc1471] n , last independent |King | of Champa Shin Sawbu
## [doc1471]                May – |King | Edward IV celebrates
## [doc1473]                      |King | James IV of Scotland
## [doc1473]  Catherine Cornaro , |king | of Cyprus ( d . )   
## [doc1474]           December – |King | Henry IV of Castile 
## [doc1476] onsangun of Joseon , |King | of Korean Joseon Dyn
## [doc1478]               July – |King | Philip              
## [doc1479] ria ( b. ) January – |King | John II of Aragon ( 
## [doc1480] ly – René of Anjou , |king | of Naples ( b. ) [ ]
## [doc1481]               July – |King | Christian II of Denm
## [doc1481] e of Anjou , titular |King | of Naples ( b. )    
## [doc1481]             August – |King | Afonso V of Portugal
## [doc1481] e of Anjou , titular |King | of Naples ( b. )    
## [doc1483] ore his coronation , |King | Edward V of England 
## [doc1483] ed in a plot against |king | .                   
## [doc1483] iero ( b. ) August – |King | Louis XI of France (
## [doc1483]  Neville are crowned |king | and Queen of England
## [doc1483]              April – |King | Edward IV of England
## [doc1483]                      |King | Edward V of England 
## [doc1484]                  The |King | of Portugal appoints
## [doc1485] Battle of Bosworth : |King | Richard III of Engla
## [doc1485]                      |King | Richard             
## [doc1485]            October – |King | Henry VII of England
## [doc1485]                      |King | Richard III of Engla
## [doc1486] a Banlang , Lan Xang |king | ( b. ) Tízoc , Aztec
## [doc1486]            January – |King |
## [doc1486] a Banlang , Lan Xang |king | ( b. ) probable –   
## [doc1487]  ) May – Tilokaraj , |king | of Lan Na ( b. )    
## [doc1488] lokkanat , Ayutthaya |king | ( b. )              
## [doc1488]             Uy M<U+1EE5>c , |king | of later Lê dynasty 
## [doc1488] lokkanat , Ayutthaya |king | ( b. )              
## [doc1488]               June – |King | James III of Scotlan
## [doc1488]  of Scotland becomes |king | after his father is 
## [doc1488] er : Troops loyal to |King | Charles VIII of Fran
## [doc1489]                      |King |
## [doc1489]               June – |King | James IV grants Andr
## [doc1490]              April – |King | Matthias Corvinus of
## [doc1490] es all who ally with |king | of France will be co
## [doc1491]  Lapulapu , Filipino |king | ( d. ) Azai Sukemasa
## [doc1491]           December – |King | Charles VIII of Fran
## [doc1491]  Lapulapu , Filipino |king | ( d. ) Azai Sukemasa
## [doc1492] maraja Wodeyar III , |King | of Mysore ( d. ) Oct
## [doc1492] simir IV Jagiellon , |King | of Poland ( b. )    
## [doc1492] Dhammazedi , Burmese |king | of Hanthawaddy ( b. 
## [doc1493]  ) January Min Bin , |king | of Arakan ( d. ) Gio
## [doc1494] eongjong of Joseon , |King | of Joseon ( b. )    
## [doc1494] ) ( d. ) September – |King | Francis I of France 
## [doc1494]            January – |King | Ferdinand I of Naple
## [doc1495] rat III of Imereti , |King | of Imereti ( d .    
## [doc1495]            October – |King | Manuel              
## [doc1495]            October – |King | John II of Portugal 
## [doc1495] le ( b. ) December – |King | Alphonso II of Naple
## [doc1495] ian War of 1494–98 : |King | Charles VIII of Fran
## [doc1495]           February – |King | 's College , Aberdee
## [doc1495]      Summer – John , |King | of Denmark , sets sa
## [doc1496]           February – |King |
## [doc1496] and to Orkney , from |King | James IV of Scotland
## [doc1496]          September – |King | Ferdinand II of Napl
## [doc1496] England ( d. ) May – |King | Gustav I of Sweden (
## [doc1496]           December – |King | Manuel              
## [doc1497]           December – |King | Manuel              
## [doc1497]                      |King | John of Denmark and 
## [doc1498] er ( b. c. ) April – |King | Charles VIII of Fran
## [doc1501]                      |King | Louis appoints Louis
## [doc1501]             August – |King | Federico of Naples a
## [doc1501]       Minkhaung II , |king | of Ava ( b. ) April 
## [doc1501]      August – Hans , |King | of Denmark , Norway 
## [doc1502] ilian I , Germany 's |King | of Romans signs a tr
## [doc1502]                  The |King | 's School , Macclesf
## [doc1502] riter ( d . ) June – |King | John III of Portugal
## [doc1503] enry II of Navarre , |King | of Navarre ( 1517–15
## [doc1504]              March – |King | James IV of Scotland
## [doc1504]           November – |King | Frederick IV of Napl
## [doc1505]           The future |King | Henry VIII of Englan
## [doc1505] n Portuguese India , |King | of Cannanore gives p
## [doc1505]              March – |King | Alexander Jagiellon 
## [doc1505] ish Uprising against |King | Hans of Denmark ( wh
## [doc1505]                  The |King | of Kotte , Dharma Pa
## [doc1505] ish Uprising against |King | Hans of Denmark ( wh
## [doc1506] ceeds his brother as |king | of Poland . [ ] Sept
## [doc1506]             August – |King | Alexander Jagiellon 
## [doc1506]              March – |King | Vladislaus          
## [doc1506]          September – |King | Philip I of Castile 
## [doc1506] onsangun of Joseon , |king | of Korean Joseon Dyn
## [doc1507]           In Italy , |King | Louis XII of France 
## [doc1507]               June – |King | Ferdinand           
## [doc1507]           In Italy , |King | Louis XII of France 
## [doc1507]           [ ] July – |King | Ferdinand           
## [doc1507]               July – |King | Ferdinand           
## [doc1507]          September — |King | James               
## [doc1507]                      |King |
## [doc1507] amaraja Wodeyar IV , |King | of Mysore ( d . ) Au
## [doc1507]  is formally crowned |King | of Poland , at a cer
## [doc1508]         Maximilian , |King | of Romans , proclaim
## [doc1508] eath of his father , |King | Oxlahuh - Tz 'i , Hu
## [doc1508]            October – |King | Louis XII of France 
## [doc1508] nuary – Maximilian , |King | of Romans , requests
## [doc1509]             Uy M<U+1EE5>c , |king | of later Lê Dynasty 
## [doc1509] nry VII of England , |King | of England and Lord 
## [doc1510]           Adviser to |King | Louis XII of France 
## [doc1512] ames V of Scotland , |King | of Scots ( d. ) [ ] 
## [doc1512]  ) January – Henry , |King | of Portugal and Card
## [doc1513]           February – |King | John of Denmark , No
## [doc1513]                      |King | James               
## [doc1514] III John was crowned |king | in .                
## [doc1514]                      |King | Christian II is crow
## [doc1514]             August – |King | Henry VIII of Englan
## [doc1515] – Injong of Joseon , |king | of Joseon Dynasty of
## [doc1515] ) Injong of Joseon , |king | of Joseon Dynasty of
## [doc1515] ) Injong of Joseon , |king | of Joseon Dynasty of
## [doc1515] er ( d . ) January – |King | Louis XII of France 
## [doc1516]             August – |King | Francis I of France 
## [doc1516] nuary – Bayinnaung , |King | of Burma ( d . ) Feb
## [doc1516] ril – Tabinshwehti , |King | of Burma ( d . ) Apr
## [doc1516]               June – |King | John III of Navarre 
## [doc1516]            January – |King | Ferdinand II of Arag
## [doc1516] ch – Vladislaus II , |king | of Bohemia , Hungary
## [doc1518] ed Sigismund I Old , |King | of Poland and Grand 
## [doc1519] oman ( d . ) March – |King | Henry II of France (
## [doc1520] a , last independent |king | of Granada ( d . ) I
## [doc1520] of Kantipur Visoun , |king | of Lan Xang ( b. )  
## [doc1520] of Kantipur Visoun , |king | of Lan Xang ( b. )  
## [doc1520] lan ( d . ) August – |King | Sigismund II Augustu
## [doc1520]            January – |King | Christian II of Denm
## [doc1520] a , last independent |king | of Granada ( d . ) I
## [doc1520] unknown Cacamatzin , |king | of Texcoco ( altepet
## [doc1520]  ( b. ) Cacamatzin , |king | of Texcoco ( altepet
## [doc1520]                      |King | Manuel              
## [doc1520] istian II is crowned |king | of Sweden .         
## [doc1520]               June – |King |
## [doc1521]           December – |King | Manuel I of Portugal
## [doc1522] st – Udai Singh II , |King | of Mewar ( d . ) Aug
## [doc1523] stav Vasa is elected |king | of Sweden , finally 
## [doc1526] w of Prome , Burmese |king | of Prome Binnya Ran 
## [doc1526] orer ( b. ) August – |King | Louis II of Hungary 
## [doc1526] w of Prome , Burmese |king | of Prome Binnya Ran 
## [doc1527]  ) May – Philip II , |King | of Spain ( d. ) [ ] 
## [doc1527] ankyawshin , Burmese |king | of Ava ( b. )       
## [doc1527] Odense ( Denmark ) : |King | Frederick           
## [doc1527] nand I of Austria as |King | of Croatia in Parlia
## [doc1528] of Sweden is crowned |king | of Sweden , having a
## [doc1529] ds Ramathibodi II as |king | of Ayutthaya .      
## [doc1530] father Mingyi Nyo as |king | of Toungoo dynasty ,
## [doc1531] rs to be over , when |king | accepts an offer mad
## [doc1533] lois , second son of |king | of France .         
## [doc1533]            January – |King |
## [doc1533] tria : Ferdinand I , |King | of Romans , withdraw
## [doc1533] esman ( b. ) April – |King | Frederick I of Denma
## [doc1533]  in England declares |king | to be supreme sovere
## [doc1533]         Bayin Htwe , |king | of Prome in Burma Ju
## [doc1533]  of Orléans – future |King | Henry II of France –
## [doc1533] er – Stefan Batory , |King | of Poland ( d . ) Oc
## [doc1533]                May – |King |
## [doc1534] f Christian III , as |King | of Denmark , takes p
## [doc1534] urchmen to submit to |king | , and forbidding pub
## [doc1534] rlord ( d . ) July – |King | Frederick II of Denm
## [doc1535] mber – Nanda Bayin , |King | of Burma ( d .      
## [doc1536] publicly challenging |king | of France to a duel 
## [doc1536]                      |King |
## [doc1536] publicly challenging |king | of France to a duel 
## [doc1539]             August – |King | Francis I of France 
## [doc1539]  Narapati of Prome , |king | of Prome in Burma . 
## [doc1540] uly – John Zápolya , |King | of Hungary ( b. c. )
## [doc1540] tap , Indian warrior |king | ( d . ) May Paolo Pa
## [doc1540]            January – |King | Henry VIII marries  
## [doc1540]               July – |King |
## [doc1540] ecuted on order from |king | , on charges of trea
## [doc1540]  Sigismund Zápolya , |King | of Hungary ( d . ) J
## [doc1542]  Lapulapu , Filipino |king | ( b. )              
## [doc1542]  Lapulapu , Filipino |king | ( b. )              
## [doc1542]           December – |King | James V of Scotland 
## [doc1543]                      |King | Gustav              
## [doc1543]               July – |King | Henry VIII of Englan
## [doc1543]                March |King | Gustav              
## [doc1543]           February – |King |
## [doc1544]            January – |King | Francis II of France
## [doc1544]  Siege of Boulogne : |King |
## [doc1545]          Hkonmaing , |king | of Ava kingdom ( b. 
## [doc1545] – Injong of Joseon , |king | of Joseon Dynasty of
## [doc1545]          Hkonmaing , |king | of Ava kingdom ( b. 
## [doc1547] ( b. ) Photisarath , |King | of Laos ( b. )      
## [doc1547]            January – |King |
## [doc1547] ( b. ) Photisarath , |King | of Laos ( b. )      
## [doc1547]            January – |King | Henry VIII of Englan
## [doc1547]              March – |King | Francis I of France 
## [doc1547]              March – |King | Francis             
## [doc1548] nd , deputies demand |king | renounce his wife Ba
## [doc1548]                      |King | Sigismund I Old of P
## [doc1549]                      |King | Tabinshwehti of Burm
## [doc1550] nun ( d. ) October – |King | Charles IX of Sweden
## [doc1550]               June – |King | Charles IX of France
## [doc1550]              April – |King | Tabinshwehti of Burm
## [doc1550] Bhuvanaikabahu VII , |King | of Kotte ( b. ) date
## [doc1551]          September – |King | Henry III of France 
## [doc1552]                      |King | Edward VI of England
## [doc1552] e – Raja Wodeyar I , |King | of Mysore ( d . ) Ju
## [doc1552] – Seonjo of Joseon , |King | of Joseon ( d . ) De
## [doc1553]               July – |King | Edward VI of England
## [doc1553] maraja Wodeyar III , |King | of Mysore ( b. )    
## [doc1553] aung of Prome , last |king | of Prome in Burma ( 
## [doc1553] an ( d. ) December – |King | Henry IV of France (
## [doc1554] ayinnaung is crowned |king | of Burmese Taungoo D
## [doc1554]  January – Min Bin , |king | of Arakan ( b. ) Jan
## [doc1554] ( d. ) [ ] January – |King | Sebastian of Portuga
## [doc1555] ne ( d. ) Naresuan , |King | of Ayutthaya ( d .  
## [doc1555] ne ( d. ) Naresuan , |King | of Ayutthaya ( d .  
## [doc1555] er – Nyaungyan Min , |king | of Burma ( d .      
## [doc1556]               Future |King | Prince John , younge
## [doc1556]                  The |kings| of Spain take contro
## [doc1557]               June – |King | John III of Portugal
## [doc1558]  history of Poland : |King | Sigismund II Augustu
## [doc1559] use of Guise and new |king | 's mother Catherine 
## [doc1559]  , bride 's father , |King | Henry II of France ,
## [doc1559]               June – |King | Philip              
## [doc1559] as , succeeds him as |king | .                   
## [doc1559]     The - year - old |King | Francis II of France
## [doc1559]            January – |King | Christian III of Den
## [doc1559]            January – |King | Christian II of Denm
## [doc1559]               July – |King | Henry II of France (
## [doc1559] beating local Khadka |kings| , which is origin of
## [doc1560]           December – |King | Francis II of France
## [doc1560]          September – |King | Gustav I of Sweden (
## [doc1560] , where young French |king | and queen are residi
## [doc1561] ecretary of State to |King | James I ( d. ) Octob
## [doc1561] cts itself to Polish |king | and Grand Duke of Li
## [doc1562] nand I , succeeds as |king | of Kingdom of Bohemi
## [doc1563]                      |King | Frederick           
## [doc1564] ed report of a ' rat |king | '. [ ] approx .     
## [doc1566]             ) June – |King | James VI of Scotland
## [doc1567]                      |King | Frederick           
## [doc1567] he mentally unstable |King | Erik XIV of Sweden a
## [doc1568]          The Swedish |king | Eric XIV is deposed 
## [doc1569] rathirat , Ayutthaya |king | ( b. )              
## [doc1569] rathirat , Ayutthaya |king | ( b. )              
## [doc1569] hakkraphat , Siamese |King | of Ayutthaya Kingdom
## [doc1571] thathirath , Laotian |king | of Lan Na and Lan Xa
## [doc1571]  Sigismund Zápolya , |King | of Hungary ( b. )   
## [doc1571] thathirath , Laotian |king | of Lan Na and Lan Xa
## [doc1572] : Catholic forces of |king | lay siege to Sancerr
## [doc1572]               July – |King | Sigismund II Augustu
## [doc1572]      Udai Singh II , |King | of Mewar ( b. )     
## [doc1572] : Catholic forces of |king | lay siege to Sancerr
## [doc1572]      Udai Singh II , |King | of Mewar ( b. ) Aegi
## [doc1574]                May – |King | Charles IX of France
## [doc1576] n Báthory is crowned |king | of Poland .         
## [doc1576] amaraja Wodeyar IV , |King | of Mysore ( b. ) dat
## [doc1577] ammin ( d. ) April – |King | Christian IV of Denm
## [doc1577]           February – |King | Eric XIV of Sweden (
## [doc1578] slator ( b. ) August |King | Sebastian of Portuga
## [doc1579] ravongsa I , Laotian |king | of Lan Xang probable
## [doc1579]  governor in name of |king | Philip II of Spain .
## [doc1579] ravongsa I , Laotian |king | of Lan Xang Giovanni
## [doc1580] The death of Henry , |King | of Portugal , with n
## [doc1580]            January – |King | Henry of Portugal ( 
## [doc1580] ch – Iberian Union : |King | Philip              
## [doc1581] oman ( b. ) August – |King | Mayadunne of Sitawak
## [doc1581] bia ( b. ) October – |King | Bayinnaung of Burma 
## [doc1581]            October – |King | Bayinnaung , who cre
## [doc1582]  Soulintha , Laotian |king | of Lan Xang ( b. )  
## [doc1582]  Soulintha , Laotian |king | of Lan Xang ( b. )  
## [doc1582]              April – |King | James VI of Scotland
## [doc1583]              March – |King | Magnus of Livonia ( 
## [doc1586] er – Stefan Batory , |King | of Poland ( b. ) [ ]
## [doc1587] , Saul Wahl is named |king | of Poland ; he is de
## [doc1587] igismund III Vasa as |king | .                   
## [doc1588]               July – |King |
## [doc1588] Christian IV becomes |king | of Denmark – Norway 
## [doc1588] holar ( b. ) April – |King | Frederick II of Denm
## [doc1588]  reject Henry III as |king | , forcing him to sid
## [doc1589] and Chief Justice to |King | Charles I of England
## [doc1589]   Battle of Arques : |King | Henry IV of France '
## [doc1589]                  The |King | makes peace with his
## [doc1589]             August – |King | Henry III of France 
## [doc1589]             August – |King | Henry III of France 
## [doc1592] at ( b. ) November – |King | John III of Sweden (
## [doc1592] Henry IV of France , |King | designate of Henry I
## [doc1593]    January – Siamese |King | Naresuan , in combat
## [doc1594]  of Sweden , Swedish |king | and general ( d. ) D
## [doc1594] t ( d . ) December – |King | Gustavus            
## [doc1595] Jesuit ( d. ) June – |King | Wladislaus IV of Pol
## [doc1595] f Joseon , sixteenth |king | of Joseon dynasty in
## [doc1596]               July – |King | Dominicus Corea ( Ed
## [doc1596]                      |King | Sigismund III Vasa m
## [doc1599]       July – Swedish |King | Sigismund III Vasa i
## [doc1600] mber – Nanda Bayin , |King | of Burma ( b. )     
## [doc1601]          September – |King | Louis XIII of France
## [doc1602]                      |King | David I of Kakheti (
## [doc1602]          September – |King | Sigismund III Vasa o
## [doc1602]                      |King | David I of Kakheti (
## [doc1602] ) becomes last Irish |King | of Tyrconnell upon d
## [doc1603] amaraja Wodeyar VI , |King | of Mysore ( d. ) Apr
## [doc1603]                      |King | Idris Alooma of Kane
## [doc1603] nation of James I as |King | of England takes pla
## [doc1604]  appointed as one of |king | 's bodyguards by Ear
## [doc1604]           February – |King | James issues an orde
## [doc1604] n Burmese calendar , |King | Nyaungyan Min of Bur
## [doc1604]  crown or on funding |King | requests .          
## [doc1604]               July – |King | James begins fundrai
## [doc1604]              March – |King | James opens his firs
## [doc1604]           February – |King | James of England den
## [doc1604]  July , coronation , |King | James I and Anne , Q
## [doc1604]                    – |King | John IV of Portugal 
## [doc1605] ungyan Min , Burmese |king | ( b.                
## [doc1605]                      |King | Sigismund , a widow 
## [doc1605]              March – |King | Alexander           
## [doc1605]            October – |King | Constantine I of Kak
## [doc1605] – Naresuan , Siamese |King | of Ayutthaya kingdom
## [doc1605]           December – |King | Sigismund III of Pol
## [doc1605] –1661 ) ( d. ) April |King | Philip IV of Spain (
## [doc1606]               July – |King | Christian IV of Denm
## [doc1606]            October – |King | Charles IX of Sweden
## [doc1607] ra passes jointly to |king | of France , and Bish
## [doc1607]  with of followers , |King | James I of England ,
## [doc1607]  y Girón , Mother of |King | John IV of Portugal 
## [doc1608] – Seonjo of Joseon , |King | of Joseon ( b. ) Mar
## [doc1608] Matthias I , already |King | of Bohemia becomes K
## [doc1609]                April |King | Philip III of Spain 
## [doc1609]                      |King | Philip III of Spain 
## [doc1609] nter ( d . ) March – |King | Frederick III of Den
## [doc1610]                May – |King | Henry IV of France i
## [doc1610] arliament as well as |king | . [ ]               
## [doc1610]  of God ( b. ) May – |King | Henry IV of France ,
## [doc1610]                      |King |
## [doc1611]            October – |King | Charles IX of Sweden
## [doc1612]           February – |King | Gustavus            
## [doc1612]       The - year old |king | almost drowns while 
## [doc1613] , a legendary Gallic |king | who fought Romans ) 
## [doc1613]           February – |King | Anaukpetlun of Burma
## [doc1613]            January – |King | James I of England s
## [doc1614]                      |King | James I of England i
## [doc1614]            Lan Na 's |King |
## [doc1614] rchduke of Austria , |King | of Hungary , Croatia
## [doc1615]           November – |King | Louis XIII of France
## [doc1616] James I of England , |king | 's favorite George V
## [doc1616]                      |King | James 's School at K
## [doc1616]             Although |King | has ordered investig
## [doc1616] by Inquisition , but |king | overturns Edict , an
## [doc1616] ry of State by young |king | Louis XIII .        
## [doc1616] n Coke , in Court of |King | 's Bench ( England )
## [doc1616] by Inquisition , but |king | overturns Edict , an
## [doc1616]                  The |king | asks for a repeat pe
## [doc1616]                      |King | James 's School at K
## [doc1616]            January – |King | James I of England a
## [doc1616]                May – |King | James I of England '
## [doc1617]            [ ] May – |King | James I of England i
## [doc1617] r - old Louis XIII , |king | of France , forces h
## [doc1617]                May – |King | James VI of Scotland
## [doc1617] e – Raja Wodeyar I , |King | of Mysore ( b. )    
## [doc1617] s regent during time |King | of England is away f
## [doc1617]  of state under four |kings| of France ( b. ) Nov
## [doc1617]             August – |King | James of England and
## [doc1619] executes last Jaffna |king | ( Cankili II ) , put
## [doc1619]  Hyojong of Joseon , |king | of Joseon Dynasty of
## [doc1619]                May – |King | Pye Min of Burma ( d
## [doc1620]  de - Cé in France , |King | Louis XIII defeats t
## [doc1620]  reign at Karachi as |king | of Sindh , in what i
## [doc1620]              March – |King | Karma Phuntsok Namgy
## [doc1620] n Emperor and former |King | of Bohemia , sends a
## [doc1620]  de - Cé in France , |King | Louis XIII defeats t
## [doc1621]                  The |king | also grants city rig
## [doc1621]              March – |King | Philip III of Spain 
## [doc1621]              March – |King | Philip IV of Spain b
## [doc1622]           February – |King | James I of England d
## [doc1622]           November – |King | Christian IV of Denm
## [doc1623] ndenov , daughter of |king | Christian IV of Denm
## [doc1623]                Hon , |King | Gwanghae of Joseon (
## [doc1623]              April – |King | Gwanghaegun of Joseo
## [doc1623] ce of Wales , future |King | Charles I of England
## [doc1624]                      |King | Filipe III of Portug
## [doc1624]         August – The |King | 's Men perform Thoma
## [doc1624]                      |King | Christian IV of Denm
## [doc1624]                      |King | Christian IV of Denm
## [doc1624] eungan , son of late |King | Seongjo , to Korean 
## [doc1624]           February – |King | Filipe III of Portug
## [doc1625]              March – |King | James VI of Scotland
## [doc1625]               June – |King | Charles             
## [doc1626]           February – |King | Charles             
## [doc1626]               June – |King | Charles             
## [doc1626]  Gustavus Adolphus , |King | of Sweden , defeats 
## [doc1628]               June – |King | Charles             
## [doc1628]           February – |King | Gustavus            
## [doc1629] ess ( d . ) August – |King | John III Sobieski , 
## [doc1629] datter , daughter of |king | Christian IV of Denm
## [doc1630] aji , Indian warrior |king | , founder of Maratha
## [doc1630] uritan ( d . ) May – |King | Charles II of Englan
## [doc1630] sland of Sri Lanka , |King | Senarat of Kandy lea
## [doc1631]           November – |King | Gustavus            
## [doc1631] Estonia , by Swedish |king | Gustavus II Adolphus
## [doc1632] llion against French |king | Louis XIII is crushe
## [doc1632]                      |King | Wladyslaw IV        
## [doc1632] ans , against French |king | Louis XIII .        
## [doc1632] Sigismund III Vasa , |King | of Sweden ( 1592– ) 
## [doc1632]      Waza is elected |king | of Polish – Lithuani
## [doc1632]  Nuremberg , Swedish |king | Gustavus Adolphus at
## [doc1632]           November – |King | Gustavus Adolphus of
## [doc1632]                      |King | Gustavus            
## [doc1632]              Swedish |king | Gustavus II Adolphus
## [doc1633]  had been elected as |king | on November . Februa
## [doc1633] an ( d . ) October – |King | James II of England 
## [doc1633]          September – |King | Louis XIII of France
## [doc1633] ber – Ferdinand IV , |King | of Romans ( d . )   
## [doc1633] Wladyslaw IV Vasa as |King | of Poland at cathedr
## [doc1634]                May – |King | Charles             
## [doc1635]            January – |King |
## [doc1636]                      |King | Christian IV of Denm
## [doc1636] r and captive during |King | Philip 's War ( d. )
## [doc1637] ter a court battle , |King | Charles I of England
## [doc1637]              April – |King | Charles             
## [doc1637] amaraja Wodeyar VI , |King | of Mysore ( b. )    
## [doc1637] rchduke of Austria , |King | of Hungary , Croatia
## [doc1638]  ( d . ) September – |King | Louis XIV of France 
## [doc1638]  – Raja Wodeyar II , |King | of Mysore ( b. )    
## [doc1639]                      |King | Charles             
## [doc1640] ament assembles , as |King | Charles I of England
## [doc1640] l to be acclaimed as |king | , ending years of pe
## [doc1640] rybut Wisniowiecki , |King | of Poland ( d. ) Jun
## [doc1640] l to be acclaimed as |king | , ending years of pe
## [doc1641] for his own safety , |King | Charles I signs Stra
## [doc1641]                      |King | Charles , in turn , 
## [doc1641] ic Church December – |King | Charles replies to G
## [doc1641]                  [ ] |King | Charles refuses to g
## [doc1641]              March – |King | Charles             
## [doc1641]           February – |King | Charles             
## [doc1641]                      |King | Charles , concerned 
## [doc1642]             August – |King | Charles             
## [doc1643]                May – |King | Louis XIII of France
## [doc1643] es led personally by |king | . [ ]               
## [doc1643] – ) ( d . ) August – |King | Afonso VI of Portuga
## [doc1644] and Chief Justice to |King | Charles I of England
## [doc1646]                May – |King | Charles             
## [doc1646]              April – |King | Charles             
## [doc1646] inter ( d. ) April – |King | Christian V of Denma
## [doc1647]                 IV , |King | of Romans , is crown
## [doc1647]           December – |King | Charles of England p
## [doc1648]                May – |King | Wladyslaw IV        
## [doc1648] ary – Christian IV , |King | of Denmark and Norwa
## [doc1648]           February – |King | Christian IV of Denm
## [doc1648]               Vasa , |King | of Poland and Grand 
## [doc1648] ) December – Gregory |King | , English statistici
## [doc1649] f Joseon , sixteenth |king | of Joseon dynasty in
## [doc1649] que ( b. ) January – |King | Charles             
## [doc1649]            January – |King | Charles             
## [doc1650] t ( d . ) November – |King | William III of Engla
## [doc1651] harles II is crowned |King | of Scots at Scone ( 
## [doc1654] uly – Ferdinand IV , |King | of Romans ( b. )    
## [doc1655]    October – Swedish |King | Karl X Gustav occupi
## [doc1655]           November – |King | Charles XI of Sweden
## [doc1656]  a mental disability |King | Afonso VI 's authori
## [doc1656]                  The |King | swears a vow , Lwów 
## [doc1656] shop ( b. ) November |King | John IV of Portugal 
## [doc1656] hn II Casimir Vasa , |King | of Poland , crowns B
## [doc1656]             August – |King | Sanpet 's uncle , Pr
## [doc1656] 's brother plots new |king | 's overthrow .      
## [doc1656]            October – |King |
## [doc1656]           December – |King | Frederick III of Den
## [doc1656]                      |King | Karl X Gustav signs 
## [doc1657]                      |King | Frederick           
## [doc1657]             [ ] June |King | Frederick III of Den
## [doc1657]               July – |King | Frederick I of Pruss
## [doc1658] hin days , Sweden 's |King | Karl X Gustav leads 
## [doc1658]          By August , |King | 's troops have surro
## [doc1659]  Hyojong of Joseon , |king | of Joseon dynasty of
## [doc1660] – Charles XI becomes |king | of Sweden at age of 
## [doc1660] er ( b. ) February – |King | Charles X Gustav of 
## [doc1660]               June – |King | George I of Great Br
## [doc1660]                May – |King | Charles II lands at 
## [doc1660] Prince James , later |King | James II , had start
## [doc1660]                May – |King | Charles             
## [doc1661] cian ( d. ) August – |King | Sukjong of Joseon ( 
## [doc1661] ne ( d. ) November – |King | Charles II of Spain 
## [doc1661]             Burma 's |King | Pye Min hands Yongli
## [doc1661]                      |King | Charles             
## [doc1662] ty to gain access to |king | , who grants him a n
## [doc1662] , Royal Librarian of |King | Felipe V of Spain ( 
## [doc1662] be executed , as new |King | .                   
## [doc1663]               July – |King | Charles             
## [doc1663]            May – The |King | 's Theatre , now cal
## [doc1663]              William |King | , English poet ( d. 
## [doc1663]              March – |King | Charles             
## [doc1664]              March – |King | Charles             
## [doc1664]            [ ] May – |King | Louis XIV of France 
## [doc1665]          September – |King | Philip IV of Spain (
## [doc1665]               June – |King | Charles             
## [doc1665]               July – |King | Charles             
## [doc1665]  II of Spain becomes |king | while not yet four y
## [doc1665] n envoy of France 's |King | Louis XIV , formally
## [doc1667] – Yohannes I becomes |king | of Ethiopia , follow
## [doc1667]          May – After |King | Philip IV of Spain r
## [doc1668]              March – |King | Charles II of Englan
## [doc1669] ybut Wisniowiecki as |King | of Poland ( and Gran
## [doc1669]                Peter |King | , Baron King ,      
## [doc1669]                      |King | Louis XIV finances p
## [doc1670] lies from Metz , but |king | refuses .           
## [doc1670]  Christian V becomes |king | of Denmark ( which a
## [doc1670]  in Poland , between |King | Michal Wisniowiecki 
## [doc1670]                 Ahom |King | Swargadeo Chakradhwa
## [doc1670]                      |King | Christian V of Denma
## [doc1670]           February – |King | Frederick III of Den
## [doc1670] soldier ( d. ) May – |King | Frederick Augustus I
## [doc1670]               June – |King | Louis XIV of France 
## [doc1671] rother - in - law of |king | Frederick IV of Denm
## [doc1671]         The Court of |King | Charles             
## [doc1671] ian ( d. ) October – |King | Frederick IV of Denm
## [doc1672] ceroy of Peru ( b. ) |King | John II Casimir of P
## [doc1672] e - Altenburg ( b. ) |King | Pye Min of Burma ( b
## [doc1672] ster ( b. ) December |King | John II Casimir of P
## [doc1673]            On June , |king | 's Catholic brother 
## [doc1673] rybut Wisniowiecki , |King | of Poland ( b. ) Nov
## [doc1673]  of soon - to - be - |king | Jan Sobieski , defea
## [doc1673]                      |King | Louis XIV of France 
## [doc1673]           November – |King | Charles             
## [doc1675]               June – |King | Philip 's War breaks
## [doc1675]              April – |King | Charles             
## [doc1675]             August – |King | Charles             
## [doc1676] burgs ( d. ) April – |King | Frederick I of Swede
## [doc1676] 's War , Metacomet ( |King | Philip ) , leader of
## [doc1676]             August – |King | Philip ( Metacomet )
## [doc1677] nislaw Leszczynski , |King | of Poland ( d . ) da
## [doc1678] iracy to assassinate |king | Charles II of Englan
## [doc1679]                  The |King | exercises his royal 
## [doc1679]                      |King | Charles             
## [doc1679] ing a bill excluding |king | 's brother , Catholi
## [doc1680]            January – |King | Amangkurat II of Mat
## [doc1680]                May – |King | Charles XI of Sweden
## [doc1680]  Trunajaya arrives , |King | Amangkurat stabs his
## [doc1681]       [ ] December – |King | Charles             
## [doc1681]                    – |King | Charles             
## [doc1682] pirate ( d. ) June – |King | Charles XII of Swede
## [doc1683]  Polish – Lithuanian |king | Jan III Sobieski , w
## [doc1683] e ( b. ) September – |King | Afonso VI of Portuga
## [doc1683] Sidney , opponent of |King | Charles II of Englan
## [doc1683]  Polish – Lithuanian |king | Jan III Sobieski , w
## [doc1684]            January – |King | Charles II of Englan
## [doc1685]           February – |King | Charles             
## [doc1685] at is now Thailand , |King | Narai of Ayutthaya s
## [doc1685]           December – |King | Charles XI of Sweden
## [doc1686]               July – |King | James II of England 
## [doc1686]            January – |King | Louis XIV of France 
## [doc1686]             August – |King | James VII of Scotlan
## [doc1686] of island of Bali as |king | of paramount state o
## [doc1687]                   As |King | James II of England 
## [doc1687]              April – |King | James II of England 
## [doc1688] isia ( d. ) August – |King | Frederick William I 
## [doc1688]                May – |King | Narai of Ayutthaya n
## [doc1688]            October – |King | James               
## [doc1688]  – Phetracha becomes |king | of Ayutthaya , after
## [doc1688]  Republic and future |King | William III of Unite
## [doc1688]               July – |King | Narai of Thailand ( 
## [doc1688]                May – |King | James II of England 
## [doc1688]                      |King | James II of England 
## [doc1689] ortugal , Portuguese |king | ( d . ) Matthew Skin
## [doc1689]          September – |King | William brings Engla
## [doc1690]  Meidingu Pamheiba , |King | of Manipur ( d. ) Ma
## [doc1690]                      |King | William III of Engla
## [doc1690]           February – |King | William III of Engla
## [doc1690]  Meidingu Pamheiba , |King | of Manipur ( d. ) De
## [doc1690]               June – |King | William III of Engla
## [doc1691] gust – In Scotland , |King | William offers Highl
## [doc1691]            January – |King | William III of Engla
## [doc1691]            January – |King | Louis XIV of France 
## [doc1692]         The Second , |King | Of England ; With Th
## [doc1692]                  The |King | of Spain donates lan
## [doc1692]  Madockawando during |King | William 's War , bet
## [doc1693] – Francesco Invrea , |King | of Corsica , begins 
## [doc1693]          September – |King | Louis XIV of France 
## [doc1693] ted on orders of new |king | , Álvaro X .        
## [doc1693]                      |King | Christian V accepts 
## [doc1693]           November – |King | Charles             
## [doc1694]  Yeongjo of Joseon , |King | of Joseon Dynasty in
## [doc1694] rca do Macaco , last |King | of Dos Palmares , Zu
## [doc1695]                      |King | William III of Engla
## [doc1696] stus III of Poland , |King | of Poland , Elector 
## [doc1696] bliographer , Norroy |king | - at - arms ( d . ) 
## [doc1696]  John III Sobieski , |King | of Poland and Grand 
## [doc1696]             August – |King | Louis XIV of France 
## [doc1696]                  The |King | 's guard is alerted 
## [doc1696]              March – |King | William III of Engla
## [doc1696]                 Ahom |King | Supaatphaa or Gadadh
## [doc1696] bliographer , Norroy |king | - at - arms ( d . ) 
## [doc1696]  John III Sobieski , |King | of Poland and Grand 
## [doc1697] ish Meteor , becomes |king | of Sweden at age on 
## [doc1697] orate burial of late |King | Charles XI of Sweden
## [doc1698] vember – The Spanish |king | Carlos names his gra
## [doc1698] y – Minye Kyawhtin , |king | of Toungoo dynasty o
## [doc1698]           December – |King | William III of Engla
## [doc1699] stian V of Denmark , |King | of Denmark and Norwa
## [doc1699] er ( d. ) November – |King | Christian VI of Denm
## [doc1699] gust – Christian V , |King | of Denmark – Norway 
## [doc1700] es II , last Spanish |king | of House of Habsburg
## [doc1700] harles II of Spain , |King | of Spain ; last Habs
## [doc1700]  day , Augustus II , |King | of Poland , and Pete
## [doc1701]     Under it terms , |King | William III , childl
## [doc1701]           November – |King | Philip V of Spain ma
## [doc1701] ames II of England , |King | of England and Irela
## [doc1702]                      |King | Charles XII of Swede
## [doc1702]                      |King | William III of Engla
## [doc1702]                      |King | William III of Engla
## [doc1702] t , daughter of late |King | James II and younger
## [doc1703]          Phetracha , |king | of Ayutthaya ( b. ) 
## [doc1703]  unknown Phetracha , |king | of Ayutthaya ( b. ) 
## [doc1704]                      |King | Charles XII of Swede
## [doc1705] and Queen Consort of |King | Gyeongjong of Joseon
## [doc1706]             August – |King | Louis XIV of France 
## [doc1706]               June – |King | Frederik            
## [doc1706] or ( b. ) December – |King | Peter II of Portugal
## [doc1707]  area as new Kandyan |king | , succeeding to upon
## [doc1707] ader ( d. ) August – |King | Louis I of Spain ( d
## [doc1709] nh Cuong becomes new |king | of northern Vietnam 
## [doc1710]  – Adolf Frederick , |King | of Sweden ( d. ) May
## [doc1711]               June – |King | Louis XIV becomes lo
## [doc1712]            October – |King | Philip V of Spain es
## [doc1712] ry Frederick Great , |King | of Prussia ( 1740–17
## [doc1712]       July – William |King | , English poet ( b. 
## [doc1713]                May – |King | Philip V of Spain is
## [doc1713] er ( b. ) February – |King | Frederick I of Pruss
## [doc1713]  of Savoy is crowned |King | of Sicily at Palermo
## [doc1713] itain and Austria as |king | of Spain ; Spain ced
## [doc1713] dinand VI of Spain , |king | of Spain , lived ( d
## [doc1714]           November – |King | Philip V of Spain is
## [doc1714] last Toungoo Dynasty |king | of Burma ( Myanmar )
## [doc1714] ber – George I , new |King | of Great Britain and
## [doc1714] ember – Alaungpaya , |King | of Burma ( d .      
## [doc1714] ram Ray , autonomous |king | , vassal of Mughal E
## [doc1715]          September – |King | Louis XIV of France 
## [doc1715] mes , son of deposed |King | James VII , arrives 
## [doc1715]                      |King | Louis XIV of France 
## [doc1715]               June – |King | Philip , ruler of Ki
## [doc1715]                      |King | Louis XIV of France 
## [doc1716]              March – |King | Charles XII of Swede
## [doc1716] man architect ( d. ) |King | Charles III of Spain
## [doc1716]  Sir John Dashwood - |King | , Baronet , English 
## [doc1716] ntist ( d. ) January |King | Charles III of Spain
## [doc1717]                 John |King | , pirate ( b. c. 170
## [doc1717]                      |King | George I of Great Br
## [doc1717]            October – |King | Philip V of Spain or
## [doc1717]          September – |King | George I of Great Br
## [doc1718]                      |King | Charles XII of Swede
## [doc1719]              April – |King | Philip V of Spain de
## [doc1719] e of Joseon , son of |king | Yeongjo of Joseon ( 
## [doc1720] ects Frederick I new |King | of Sweden .         
## [doc1720] erick I take over as |king | of Sweden .         
## [doc1720]               July – |King | Sukjong of Joseon ( 
## [doc1723] anist ( d. ) March – |King | Frederick V of Denma
## [doc1723]           February – |King | Louis XV of France a
## [doc1724]            January – |King | Philip V of Spain ab
## [doc1724] inister for Spain 's |King | Philip V until latte
## [doc1724] oser ( b. ) August – |King | Louis I of Spain ( b
## [doc1725]                  The |King | is not present , and
## [doc1725]        July – Thomas |King | , English and Britis
## [doc1726]                  The |King | selects his former t
## [doc1726]        March – After |King | Haffon of West Afric
## [doc1726] r Prime Minister for |King | Louis XV of France ,
## [doc1727]           Prussia 's |King | Frederick William   
## [doc1727]                      |King | George              
## [doc1727]    Jesse of Kartli , |King | of Georgia ( b. or )
## [doc1727]                      |King | George I of Great Br
## [doc1727]    Jesse of Kartli , |King | of Georgia ( b. or )
## [doc1729]           February – |King | Philip V of Spain is
## [doc1730] ber – Frederick IV , |King | of Denmark and Norwa
## [doc1730] rederick 's father , |King | Frederick William , 
## [doc1731] r. Richard Bentley , |King | 's librarian and Hou
## [doc1731]             August – |King | Frederick William I 
## [doc1732]              April – |King | Christian VI of Denm
## [doc1732] t Poniatowski , last |King | of Poland and Grand 
## [doc1732]           May – John |King | , English churchman 
## [doc1733]           February – |King | Augustus II Strong o
## [doc1733] ynski , who had been |King | of Poland from to un
## [doc1734] . ) April – Taksin , |King | of Thailand ( d. ) A
## [doc1734] les of Spain ( later |King | Charles III ) become
## [doc1734] aungdawgyi , Burmese |king | ( d . ) August – Ben
## [doc1735]                  The |King | 's Highway ( Charles
## [doc1736]                May – |King | George              
## [doc1736]           November – |King |
## [doc1737] htang VI of Kartli , |king | of Kingdom of Kartli
## [doc1738]                  [ ] |King | Philip V issues orde
## [doc1738]               June – |King | George III of United
## [doc1740]                    – |King | Edward of Miskito In
## [doc1740] rederick William I , |King | in Prussia ( b. )   
## [doc1741]                May – |King | George              
## [doc1742] Khan Qajar , Iranian |king | ( d. ) March – Alett
## [doc1743] ber – Jai Singh II , |King | of Amber - Juiper , 
## [doc1743]     Adolphus becomes |king | on death of King Fre
## [doc1743]                      |King | Augustus III of Pola
## [doc1743] roops , last British |king | to do so .          
## [doc1743] d until his father , |King | James II , was depos
## [doc1744]  ( d . ) September – |King | Frederick William II
## [doc1745]           November – |King | George 's War :     
## [doc1745]               June – |King | George 's War :     
## [doc1745] rch – Augustus III , |King | of Poland and Electo
## [doc1746] ust – Christian VI , |King | of Denmark and Norwa
## [doc1746]               July – |King | Philip V of Spain ( 
## [doc1746]               July – |King | Philip V of Spain di
## [doc1746]                      |King | Gustav III of Sweden
## [doc1747]            October – |King | George II transfers 
## [doc1747]           February – |King | George 's War :     
## [doc1748] ( d. ) [ ] October – |King | Charles XIII of Swed
## [doc1748]  Timur Shah , Afghan |king | ( d. ) Thomas Hollow
## [doc1748]  Timur Shah , Afghan |king | ( d. ) Thomas Hollow
## [doc1749] an ( d . ) January – |King | Christian VII of Den
## [doc1750]               July – |King | John V of Portugal (
## [doc1750]                  The |King | of Dahomey has incom
## [doc1750]                      |King | José Manuel appoints
## [doc1751] manuel IV of Savoy , |King | of Sardinia ( d . ) 
## [doc1751]              March – |King | Frederick I of Swede
## [doc1751] nce in , becomes new |King | .                   
## [doc1751]    April – Sweden 's |King | Frederick I dies at 
## [doc1753]            January – |King | Binnya              
## [doc1753]  November – Spain 's |King | Fernando VI issues a
## [doc1753]                      |King | George              
## [doc1754]                      |King | George II , for whom
## [doc1754] maraza Dipadi , last |king | of Toungoo dynasty o
## [doc1754]  – Karim Khan Zand , |King | of Persia ( now Iran
## [doc1754] maraza Dipadi , last |king | of Toungoo dynasty o
## [doc1754] XVI of France , last |king | of France before Rev
## [doc1755]            At time , |King | George II of Great B
## [doc1755]           November – |King | Ferdinand VI of Spai
## [doc1755] ( d. ) March – Rufus |King | , American lawyer , 
## [doc1756]  ] May – Singu Min , |king | of Myanmar ( k . ) M
## [doc1756]  Chinnamalai , Tamil |king | ( d . ) August – Pie
## [doc1757] c unrest in France , |King | 's Council issues a 
## [doc1757] Battle of Khresili : |King | Solomon I of Imereti
## [doc1757]           February – |King | Louis XV of France d
## [doc1757]       [ ] February – |King | Frederick V of Denma
## [doc1757] c unrest in France , |King | 's Council issues a 
## [doc1757]  considered Prussian |king | 's greatest tactical
## [doc1757]            At time , |King | George II of Great B
## [doc1757]           November – |King | Abdallah IV of Moroc
## [doc1757] iot 's suppression , |King | Joao 's minister , M
## [doc1758]  d. ) Kamehameha I , |King | of Hawaii ( d. c. ) 
## [doc1758] ( d. ) Philip Gidley |King | , British Royal     
## [doc1758] ( d. ) Philip Gidley |King | , British Royal     
## [doc1759] ltese painter ( b. ) |King |
## [doc1759] oser ( b. ) August – |King | Ferdinand VI of Spai
## [doc1759] ltese painter ( b. ) |King |
## [doc1760] omposer ( b. ) May – |King | Alaungpaya of Burma 
## [doc1760] gne ( b. ) October – |King | George II of Great B
## [doc1761]          September – |King | George III and Queen
## [doc1762] States ( d. ) August |King | George IV of United 
## [doc1762] man physician ( d. ) |King | George IV of United 
## [doc1762]             August : |King | Prithvi Narayan Shah
## [doc1763]  Marshal of France , |King | Charles XIV         
## [doc1763]  Elector of Saxony , |King | of Poland and Grand 
## [doc1763] aungdawgyi , Burmese |king | ( b. )              
## [doc1764]           [ ] July – |King | George , on advise o
## [doc1764]                  The |King | - in-Council doth he
## [doc1765] eece ( d. ) August – |King | William IV of United
## [doc1765] amity with Chinese , |King | George III of Great 
## [doc1765]  – Frederick Great , |King | of Prussia , issues 
## [doc1766]            January – |King | Frederick V of Denma
## [doc1766] nislaw Leszczynski , |King | of Poland ( b. ) [ ]
## [doc1766]          [ ] April – |King | Carlos              
## [doc1767]           February – |King | Carlos              
## [doc1767]                      |King | Ekkathat is found de
## [doc1767] t , French marshal , |King | of Naples ( d.      
## [doc1767] ohn VI of Portugal , |King | of Portugal ( d. ) M
## [doc1767]               At new |King | 's College medical s
## [doc1768]                  The |king | 's refusal to sign s
## [doc1768]              March – |King | Louis XV of France d
## [doc1768]           December – |King | Prithvi Narayan     
## [doc1768]             Spain 's |King | Carlos              
## [doc1768] – Joseph Bonaparte , |King | of Naples and Spain 
## [doc1769]                      |King | Suremphaa of Assam B
## [doc1770]              March – |King | Prithvi Narayan     
## [doc1770]           December – |King | Louis XV of France i
## [doc1770] airs ( d. ) August – |King | Frederick William II
## [doc1770]             Georgian |king |
## [doc1770] from his position by |king | . [ ] Joseph Priestl
## [doc1771]  – Ernest Augustus , |King | of Hanover ( d. )   
## [doc1771]  – Adolf Frederick , |King | of Sweden ( b. )    
## [doc1772] ntor ( d. ) August – |King | William I of Netherl
## [doc1773]           February – |King | Charles Emmanuel III
## [doc1773] – Louis Philippe I , |King | of French ( d. ) Nov
## [doc1774]                  May |King | Louis XV of France (
## [doc1774] talist ( d. ) Edward |King | , Royal Navy officer
## [doc1774]          Sir Richard |King | , Baronet , Royal Na
## [doc1774]                      |King | Louis XV of France (
## [doc1774]          Sir Richard |King | , Baronet , Royal Na
## [doc1774] talist ( d. ) Edward |King | , Royal             
## [doc1774] amaraja Wodeyar IX , |King | of Mysore ( d . ) Th
## [doc1775]  d. ) April – Samuel |King | , American Presbyter
## [doc1776] ndependence summer , |King | George III acknowled
## [doc1777]  Pratap Singh Shah , |king | of Nepal ( b. )     
## [doc1777]           February – |King | Joseph I of Portugal
## [doc1777] ederic is crowned as |king | of Miskito Kingdom .
## [doc1777]           February – |King | Joseph I of Portugal
## [doc1778] on ( 1814–30 ) under |King | Charles X ( d. )    
## [doc1778]              April – |King | George III appoints 
## [doc1778] rench army general , |King | of Holland ( d. ) [ 
## [doc1778] IV Adolf of Sweden , |King | of Sweden ( d. ) Jam
## [doc1778] IV Adolf of Sweden , |King | of Sweden ( d. ) Nov
## [doc1779]               June – |King | Charles             
## [doc1782] Min is overthrown as |king | of Myanmar by his co
## [doc1784]                      |King | Carlos              
## [doc1786] ser ( d. ) September |King | Christian VIII of De
## [doc1786] tect ( b. ) August – |King | Frederick II of Prus
## [doc1786] ria ( d . ) August – |King | Ludwig I of Bavaria 
## [doc1786] an physician ( d . ) |King | Christian VIII of De
## [doc1787]         Shaka , Zulu |king | ( d. ) January – Art
## [doc1788]                      |King | George III of United
## [doc1788]                      |King | Charles III of Spain
## [doc1788]             August – |King | Louis XVI of France 
## [doc1788] rman composer ( b. ) |King | Charles III of Spain
## [doc1788]           December – |King | Charles III of Spain
## [doc1789]       [ ] February – |King | Gustav III of Sweden
## [doc1790] I , Kingdom November |King | And Priest ( b. )   
## [doc1792]                      |King | Gustav III of Sweden
## [doc1792] gogue ( b. ) March – |King | Gustav III of Sweden
## [doc1793]            January – |King | Louis XVI of France 
## [doc1793] public and hatred of |kings| .                   
## [doc1794]            January – |King | George III of Great 
## [doc1795]               June – |King | Louis XVII of France
## [doc1795] ian ( d. ) October – |King | Frederick William IV
## [doc1795]  ( he becomes actual |king | on April , ) .      
## [doc1796]           November – |King | Ang Eng of Cambodia 
## [doc1796]     Two days later , |King | Victor Amadeus III o
## [doc1797] . ) George Tupou I , |King | of Tonga ( d. ) Thom
## [doc1797] Khan Qajar , Iranian |king | ( b. )              
## [doc1797] ty ( b. ) November – |King | Frederick William II
## [doc1797] Khan Qajar , Iranian |king | ( b. )              
## [doc1798]            October – |King | Charles Albert of Sa
## [doc1799]               July – |King | Oscar I of Sweden an
## [doc1800]                      |King | Jeongjo of Joseon , 
## [doc1800]             August – |King | George III gives roy
## [doc1803] een ruled by British |king | ) .                 
## [doc1803] dara Vanniyan , last |King | of Vanni ( defeated 
## [doc1804]  Mongkut , Rama IV , |King | of Siam ( d . )     
## [doc1805]       [ ] February – |King |
## [doc1805]  Chinnamalai , Tamil |king | ( b. ) August – Chri
## [doc1807]  , Prime Minister of |King | Louis XVI of France 
## [doc1808] Frederick VI becomes |king | of Denmark .        
## [doc1808]            October – |King | Frederick VII of Den
## [doc1808]              March – |King | Christian VII of Den
## [doc1809] ulaloke ( Rama I ) , |King | of Siam , founder of
## [doc1809]                      |King | Gustav IV Adolf of S
## [doc1809]                      |King | Gustav IV Adolf of S
## [doc1809] ulaloke ( Rama I ) , |King | of Siam , founder of
## [doc1809] s ( uncle of deposed |king | Gustav IV Adolf ) is
## [doc1810]                      |King | George III of United
## [doc1811]                      |King | Maximilian II of Bav
## [doc1814]           November – |King | Charles XIII of Swed
## [doc1814] h – Kamehameha III , |King | of Hawaiian Islands 
## [doc1815] ch – Joachim Murat , |King | of Naples , declares
## [doc1815] inha of Kandy , last |king | in Ceylon , is depos
## [doc1815] t , French marshal , |King | of Naples ( executed
## [doc1815] had declared himself |king | on June , at death o
## [doc1815] him Murat , defeated |King | of Naples , is force
## [doc1816] axe - Coburg ( later |King | of Belgians ) marrie
## [doc1817]               June – |King | Ferdinand VII of Spa
## [doc1818]     Upon his death , |King | Charles XIII of Swed
## [doc1818]  – Norway is crowned |king | of Sweden .         
## [doc1818]  XIII / Charles II , |King | of Sweden and Norway
## [doc1818]  – Norway is crowned |king | of Sweden .         
## [doc1818]  – Norway is crowned |king | of Norway , in Trond
## [doc1818] eorge III and future |King | William IV of United
## [doc1819] ist ( b. ) January – |King | Charles IV of Spain 
## [doc1819] May – Kamehameha I , |King | of Hawaii ( b. )    
## [doc1819] manuel IV of Savoy , |King | of Sardinia ( b. )  
## [doc1820]              April – |King | William I of Württem
## [doc1820]                      |King | George III of United
## [doc1820]              March – |King | Ferdinand VII of Spa
## [doc1821]                      |King | Badi                
## [doc1821]           December – |King | Pomare II of Tahiti 
## [doc1821] George IV is crowned |king | of United Kingdom of
## [doc1821]  of Clarence ( later |King | William IV ) ( b. ) 
## [doc1822]         The Visit of |King | George IV to Scotlan
## [doc1824] n ( b. ) September – |King | Louis XVIII of Franc
## [doc1824] ly – Kamehameha II , |King | of Hawaii ( b. )    
## [doc1824]               July – |King | Kamehameha          
## [doc1824] bhalai ( Rama II ) , |King | of Siam ( Thailand )
## [doc1825] ist ( b. ) October – |King | Maximilian I Joseph 
## [doc1825]            January – |King | Ferdinand I of Two S
## [doc1825]       [ ] November – |King | Joao                
## [doc1826]              March – |King | John VI of Portugal 
## [doc1826] wayo kaMpande , Zulu |king | ( d . ) January Mari
## [doc1826]                      |King | João 's son , Empero
## [doc1826] painter ( d. ) May – |King | Charles XV of Sweden
## [doc1827] soldier ( b. ) Rufus |King | , American lawyer , 
## [doc1828]                      |King | Miguel              
## [doc1828] of Brazil and former |King | of Portugal , signs 
## [doc1829] rmy ( d. ) January – |King | Oscar II of Sweden a
## [doc1829]             August – |King | 's College London is
## [doc1830]                      |King | George IV of United 
## [doc1831]       Albert becomes |king | of Sardinia after de
## [doc1831]       Albert becomes |king | of Sardinia after de
## [doc1831]  Felix of Sardinia , |King | of Sardinia ( b. ) A
## [doc1832]  ) August – George , |King | of Saxony ( d . ) Au
## [doc1832]        Othon , first |King | of Greece , after He
## [doc1833]             August – |King | William 's College o
## [doc1833]          September – |King | Ferdinand VII of Spa
## [doc1834] ath Ali Shah Qajar , |King | of Iran ( b. ) Octob
## [doc1834]                      |King | William IV temporari
## [doc1835] ogist ( d. ) April – |King | Leopold II of Belgiu
## [doc1836]           November – |King | Charles X of France 
## [doc1837]               June – |King | William IV of United
## [doc1837]          September – |King | Pedro V of Portugal 
## [doc1838] ser ( d. ) October – |King | Luís I of Portugal (
## [doc1839] ber – Frederick VI , |King | of Denmark , ex-King
## [doc1840]              April – |King | 's College Hospital 
## [doc1840]               June – |King | Frederick William II
## [doc1841] ce ( d. ) November – |King | Edward VII of United
## [doc1841] zil ( d. ) October – |King | Nicholas            
## [doc1843] tician ( d. ) June – |King | Frederick VIII of De
## [doc1843] er ( b. ) December – |King | William I of Netherl
## [doc1844] ther of Napoleon I , |King | of Naples and Spain 
## [doc1844]                    - |King | Umberto I of Italy (
## [doc1844]                      |King | Oscar I ascends to o
## [doc1844]              March – |King | Charles XIV         
## [doc1844]                      |King | Oscar I ascends to o
## [doc1845] al ( b. ) November – |King | Aleamotu<U+02BB>a of Tonga 
## [doc1845] orer ( d. ) August – |King | Ludwig              
## [doc1846] – Bagyidaw , Burmese |king | ( b. ) November Alex
## [doc1848] y – Christian VIII , |King | of Denmark ( b. )   
## [doc1848] mperor and Hungarian |king | Ferdinand I of Austr
## [doc1848] an ( d. ) February – |King | William II of Württe
## [doc1848] eror , and Hungarian |king | Ferdinand I of Austr
## [doc1848]        The Hungarian |king | and Habsburg emperor
## [doc1848] – Louis Philippe I , |King | of French , abdicate
## [doc1849]              March – |King | Willem II of Netherl
## [doc1849]  end in failure , as |King | Frederick William IV
## [doc1849]  end in failure , as |King | Frederick William IV
## [doc1849]               July – |King | Charles Albert of Sa
## [doc1850] poet ( b. ) August – |King | Louis Philippe      
## [doc1851] Rama IV ) is crowned |King | of Siam , at Grand P
## [doc1851] gklao ( Rama III ) , |King | of Siam ( Thailand )
## [doc1851] Rama IV ) is crowned |King | of Siam , at Grand P
## [doc1852] September – Gojong , |king | of Korean Joseon dyn
## [doc1853] ) April – William R. |King | ,                   
## [doc1854] r – Kamehameha III , |King | of Hawaii ( b. c. ) 
## [doc1855]            January – |King | C. Gillette , Americ
## [doc1856] ry constitution , as |King | - Grand Duke William
## [doc1858] uist ( d. ) [ ] June |King | Gustaf V of Sweden (
## [doc1858]                      |King | Gustaf V of Sweden (
## [doc1859]                 July |King | Oscar I of Sweden an
## [doc1861] on ( b. ) November – |King | Pedro V of Portugal 
## [doc1861] n ( d . ) February – |King | Ferdinand I of Bulga
## [doc1861] ardinia becoming its |king | .                   
## [doc1861] d. ) Abba Jifar II , |king | of Gibe Kingdom of J
## [doc1862]               Jessie |King | ,                   
## [doc1863]  b. ) [ ] November – |King | Frederick VII of Den
## [doc1863]           November – |King | Christian IX of Denm
## [doc1863] an , Emir of Kabul , |King | of Kandahar ( b. )  
## [doc1864]              March – |King | Maximilian II of Bav
## [doc1865]           December – |King | Leopold I of Belgium
## [doc1866]           November – |King | Miguel              
## [doc1867]               July – |King | Otto of Greece ( b. 
## [doc1868]  – Mzilikazi , first |king | of Mthwakazi ( b. c.
## [doc1868] ongkut ( Rama IV ) , |King | of Siam ( Thailand )
## [doc1868]           February – |King | Ludwig I of Bavaria 
## [doc1869] ictor Emmanuel III , |King | of Italy ( d. ) Nove
## [doc1870]  ( d . ) September – |King | Christian X of Denma
## [doc1870]  Amadeo de Saboya as |King | Amadeo I of Spain . 
## [doc1871]                  The |King | of Prussia is declar
## [doc1872] ember – Charles XV , |King | of Sweden and Norway
## [doc1872] nce ( d . ) August – |King | Haakon VII of Norway
## [doc1873] Kingdom and Ghana 's |King | Kofi KariKari , who 
## [doc1874]  actor ( d. ) June – |King | George Tupou II of T
## [doc1874] lliam Lyon Mackenzie |King | , Prime Minister of 
## [doc1875]                      |King | Albert I of Belgium 
## [doc1876]          September – |King | Leopold II of Belgiu
## [doc1878]                  The |King | survives with a slig
## [doc1878] ( b. ) [ ] January – |King | Victor Emmanuel II o
## [doc1878] vember Ernest Joseph |King | , Commander in Chief
## [doc1880]  March – Pagan Min , |King | of Ava ( b. )       
## [doc1880] jiravudh , Rama VI , |King | of Siam ( d . ) Janu
## [doc1882] rish academic ( d. ) |King | Gustaf VI Adolf of S
## [doc1882]                 Zulu |king | Cetshwayo kaMpande r
## [doc1883]                      |King | William 's College i
## [doc1884] wayo kaMpande , Zulu |king | ( b. )              
## [doc1884] intervenes to rescue |king | and help suppress re
## [doc1885] ( 1946-1957 ) ( d. ) |King | Oliver , American ja
## [doc1885]               July – |King | Sisavang            
## [doc1885]             November |King |
## [doc1885]                      |King |
## [doc1885]           February – |King | Leopold II of Belgiu
## [doc1886] osopher ( d. ) May – |King | Alfonso XIII of Spai
## [doc1886]                      |King | Ludwig II of Bavaria
## [doc1886] eptember – Hannah T. |King | , British - born Ame
## [doc1886]                      |King | Ludwig II of Bavaria
## [doc1886]               June – |King | Ludwig              
## [doc1887]               July – |King | Kalakaua of Hawai 'i
## [doc1888]  ( d. ) June – Cecil |King | , New Zealand rugby 
## [doc1888] I , German Emperor , |King | of Prussia ( b. )   
## [doc1888] I , German Emperor , |King | of Prussia ( b. )   
## [doc1889] ent ( b. ) October – |King | Luís I of Portugal (
## [doc1889] a ( d . ) November – |King | Manuel II of Portuga
## [doc1889] . ) December Glele , |King | of Dahomey ( suicide
## [doc1889]              Glele , |King | of Dahomey ( suicide
## [doc1890]            January – |King | Amadeo I of Spain ( 
## [doc1890]           November – |King | William III of Nethe
## [doc1890] eorge II of Greece , |King | of Greece ( d. ) Jul
## [doc1891]  – Ahmad bin Yahya , |King | of Yemen ( d. )     
## [doc1893]                      |King | George Tupou I of To
## [doc1893] ess ( d. ) October – |King | Carol II of Romania 
## [doc1893] ary of Teck : future |King | George V of United K
## [doc1893]                      |King | George Tupou I of To
## [doc1893] adhipok , Rama VII , |King | of Siam ( d. ) Novem
## [doc1894] sh aristocrat ( d. ) |King | Boris III of Bulgari
## [doc1894]                      |King | Hassan I of Morocco 
## [doc1894]                 June |King | Edward VIII of Unite
## [doc1895] , French poet ( d. ) |King | George VI of United 
## [doc1895] of Argentina ( d . ) |King | Zog of Albania ( d .
## [doc1895]  of Argentina ( d. ) |King | Zog of Albania ( d .
## [doc1896] r , Shah of Persia , |King | of Herat ( b. )     
## [doc1897] Gaki Sherocho , last |king | of Kaffa , bringing 
## [doc1898] muddin of Selangor , |King | of Malaysia ( d .   
## [doc1898] muddin of Selangor , |King | of Malaysia ( d . ) 
## [doc1899]  Iosefo as island 's |king | , USS Philadelphia t
## [doc1899]               July – |King | Sobhuza             
## [doc1899]  Iosefo as island 's |king | , USS Philadelphia t
## [doc1899]  April – In Uganda , |King | Chwa II Kabalega of 
## [doc1899]          After Benin |King |
## [doc1899] etoa Tanumafili I as |King | of Samoa takes place
## [doc1899] siast ( d. ) March – |King | Frederick IX of Denm
## [doc1899]          In Uganda , |King | Chwa II Kabalega of 
## [doc1900]               July – |King | Umberto I of Italy (
## [doc1900]               July – |King | Umberto I of Italy i
## [doc1900] jagopala Tondaiman , |King | of Pudukkottai ( d. 
## [doc1901] ust – Sho Tai , last |king | of Ryukyu Kingdom in
## [doc1901]  Spanish poet ( b. ) |King | Milan               
## [doc1901]  ( b. ) [ ] February |King | Milan               
## [doc1902]                      |King | Leopold II of Belgiu
## [doc1902] and director ( d . ) |King | Saud of Saudi Arabia
## [doc1902]               June – |King | Albert of Saxony , m
## [doc1902]             November |King | Leopold II of Belgiu
## [doc1902] ke of Cádiz , former |king | consort of Spain ( b
## [doc1902] ion of Edward VII as |King | of United Kingdom an
## [doc1903] nited Kingdom ( d. ) |King | Olav V of Norway ( d
## [doc1903]        Alexander I , |King | of Serbia ( b. ) Nik
## [doc1903]                      |King | Alexander Obrenovic 
## [doc1903] nited Kingdom ( d. ) |King | Olav V of Norway ( d
## [doc1903]   June Alexander I , |King | of Serbia ( b. ) Nik
## [doc1904]     Alberta Williams |King | ,                   
## [doc1904] ife of Martin Luther |King | Sr. , and mother of 
## [doc1904]  of Italy , and last |King | of Italy ( died ) Se
## [doc1904] ife of Martin Luther |King | Sr. , and mother of 
## [doc1905] ke of Skåne , future |King | Gustaf VI Adolf .   
## [doc1905]             August – |King | Oscar II of Sweden a
## [doc1906]            January – |King | Christian IX of Denm
## [doc1907]               Shah , |King | of Malaysia ( d. ) J
## [doc1907] is son Gustaf V , as |king | of Sweden .         
## [doc1907] na ( b. ) December – |King | Oscar II of Sweden (
## [doc1907]  first Druk Gyalpo ( |king | of Bhutan ) .       
## [doc1907]               Shah , |King | of Malaysia ( d.    
## [doc1908]                      |King | Carlos              
## [doc1908]           November – |King | Leopold II of Belgiu
## [doc1908]                      |King | Carlos              
## [doc1909] er ( b. ) December – |King | Leopold II of Belgiu
## [doc1909]           December – |King | Albert I of Belgium 
## [doc1909] r ( d . ) February – |King | Talal of Jordan ( d.
## [doc1910] Rama VI ) is crowned |King | of Siam , after deat
## [doc1910]            October – |King | Chulalongkorn ( Rama
## [doc1910] Rama VI ) is crowned |King | of Siam , after deat
## [doc1910]                May – |King | Edward VII of United
## [doc1912] Emperor of Austria , |King | of Hungary in exile 
## [doc1913]           November – |King |
## [doc1913]              March – |King | George I of Greece i
## [doc1913]              March – |King | George I of Greece (
## [doc1914]            In London |King | declares war on Germ
## [doc1914] ohammed Zahir Shah , |King | of Afghanistan ( d. 
## [doc1914]                  The |King | 's Own Scottish Bord
## [doc1914]            In London |King | declares war on Germ
## [doc1914] ter ( b. ) October – |King | Carol I of Romania (
## [doc1916]  boxer ( d. ) Warren |King | , American cartoonis
## [doc1916]         Thibaw Min , |King | of Burma ( b. )     
## [doc1916]       March – Thomas |King | , New Zealander astr
## [doc1916]         Thibaw Min , |King | of Burma ( b. )     
## [doc1917]               July – |King | George V of United K
## [doc1917]               June – |King | Constantine I of Gre
## [doc1917]  Petra of Kelantan , |King | of Malaysia ( d. ) D
## [doc1918]                      |King | Ferdinand I of Bulga
## [doc1918]                 July |King | Taufa<U+02BB>ahau Tupou IV 
## [doc1918]           November – |King | Ludwig of Bavaria fl
## [doc1918]                      |King | Ferdinand I of Bulga
## [doc1919]                  Nat |King | Cole , African- Amer
## [doc1920] Faisal I of Syria as |king | . [ ]               
## [doc1920] ch politician ( d. ) |King | Mahendra of Nepal ( 
## [doc1920]  Faisal I of Iraq as |king | .                   
## [doc1920] er of Greece , Greek |king | ( b. ) [ ]          
## [doc1920]  February Farouk I , |King | of Egypt ( d . ) Geo
## [doc1921] t between George V , |King | of Canada , and vari
## [doc1921]            October – |King | William II of Württe
## [doc1921]  Peter I of Serbia , |King | of Yugoslavia ( b. )
## [doc1921] ano ( d. ) October – |King | Michael I of Romania
## [doc1921]             August – |King | Faisal I of Iraq is 
## [doc1921] II of Bavaria , last |king | of Bavaria ( b. ) [ 
## [doc1921]  Montenegro , exiled |king | ( b. ) [ ]          
## [doc1922] t between George V , |King | of Canada , and vari
## [doc1922] uanku Abdul Rahman , |King | of Malaysia ( d. )  
## [doc1922] uanku Abdul Rahman , |King | of Malaysia ( d. )  
## [doc1922] ) Norodom Sihanouk , |King | of Cambodia ( d. ) B
## [doc1923] antine I , abdicated |king | of Greece ( b. )    
## [doc1923] torian ( d. ) Wright |King | , American actor ( d
## [doc1923] tholic bishop ( d. ) |King | Peter II of Yugoslav
## [doc1923]  ( later George VI , |King | of United Kingdom ) 
## [doc1923]               Claude |King | , American country m
## [doc1924] singer ( d. ) August |King | Abdullah of Saudi Ar
## [doc1925]      Feast of Christ |King | , is promulgated . [
## [doc1925]           November – |King | Vajiravudh ( Rama VI
## [doc1925] Bolivia ( d. ) James |King | , American tenor ( d
## [doc1925] reland ) ( d. ) B.B. |King | , American singer - 
## [doc1925] Bolivia ( d. ) James |King | , American tenor ( d
## [doc1926]  – Ugyen Wangchuck , |King | of Bhutan ( b. )    
## [doc1926] Muhammad al - Badr , |King | of Yemen ( d. ) Febr
## [doc1927] Bhumibol Adulyadej , |King | Rama IX of Thailand 
## [doc1927]        Coretta Scott |King | , African-American c
## [doc1927]  April Coretta Scott |King | , African-American c
## [doc1927]               July – |King | Ferdinand I of Roman
## [doc1927] eral ( b. ) August – |King | Sisowath of Cambodia
## [doc1927] Bhumibol Adulyadej , |King | Rama IX of Thailand 
## [doc1928]  Selassie is crowned |king | ( not yet emperor ) 
## [doc1928] ish Queen Consort of |King | Baudouin of Belgium 
## [doc1928] zlan Shah of Perak , |King | of Malaysia ( d. ) A
## [doc1929] mathematician ( d. ) |King | Hassan II of Morocco
## [doc1929] nuary Dictatorship : |King | Alexander of Serbs ,
## [doc1929] nuary Dictatorship : |King | Alexander of Serbs ,
## [doc1930]            September |King | Baudouin            
## [doc1930] h ( d. ) [ ] Morgana |King | , American jazz sing
## [doc1930]                      |King | Baudouin            
## [doc1930]         June Morgana |King | , American jazz sing
## [doc1931] ( d . ) August – Don |King | , American boxing pr
## [doc1932]               July – |King | C. Gillette , Americ
## [doc1932]               July – |King | Manuel II of Portuga
## [doc1932]  Augustus III , last |King | of Saxony ( b . )   
## [doc1933]                  The |King | and Country debate :
## [doc1933] ohammed Nadir Shah , |King | of Afghanistan ( b. 
## [doc1933] ohammed Nadir Shah , |King | of Afghanistan ( b. 
## [doc1933]          September – |King | Faisal I of Iraq ( b
## [doc1934]           February – |King | Albert I of Belgium 
## [doc1934]           February – |King | Leopold III of Belgi
## [doc1934]              October |King | Alexander           
## [doc1934]                      |King | Alexander I of Yugos
## [doc1934]            October – |King | Alexander of Yugosla
## [doc1934]               June – |King | Albert II of Belgium
## [doc1935]              March – |King | Prajadhipok ( Rama V
## [doc1935]           December – |King | Salman of Saudi Arab
## [doc1935]  d. ) [ ] November – |King | Hussein of Jordan ( 
## [doc1935] li of Hejaz , former |King | of Hejaz and Grand S
## [doc1936]                      |King | Edward VIII of Unite
## [doc1936] i V of Rwanda , last |king | of Rwanda ( d. )    
## [doc1936]                  The |King | performs his last ac
## [doc1936] January – Britain 's |King | George V state funer
## [doc1936]        The abdicated |King | , now HRH Prince Edw
## [doc1936] actor ( b. ) April – |King | Fuad I of Egypt ( b.
## [doc1936]                  The |King | performs his last ac
## [doc1936]            January – |King | George V of United K
## [doc1936]        The abdicated |King | , now HRH Prince Edw
## [doc1936] i V of Rwanda , last |king | of Rwanda ( d. )    
## [doc1937]                      |King | Harald V of Norway [
## [doc1937]                      |King | Harald V of Norway [
## [doc1938] n ( d. ) [ ] January |King | Juan Carlos I of Spa
## [doc1938] merican author May – |King | Moshoeshoe II of Les
## [doc1938]               Ben E. |King | ,                   
## [doc1938]        [ ] January – |King | Farouk of Egypt marr
## [doc1938] iarch ( b. ) April – |King | Oliver , American ja
## [doc1939]           November – |King | Daudi Cwa II of Buga
## [doc1939] ly invades Albania ; |King | Zog flees .         
## [doc1939] general ( b. ) April |King | Ghazi of Iraq ( b. )
## [doc1939]  of Canada Mackenzie |King | , in English , and J
## [doc1939]  of Canada Mackenzie |King | , in English , and J
## [doc1939] ietoa Tanumafili I , |King | of Samoa ( b. )     
## [doc1939]                      |King | George VI and Queen 
## [doc1939]                      |King | Ghazi of Iraq ( b. )
## [doc1939]                  May |King | George VI and Queen 
## [doc1940]               June – |King | Haakon              
## [doc1940] cutes over of exiled |King | Carol II of Romania 
## [doc1940]               WWII : |King | Leopold III of Belgi
## [doc1940]                      |King | Leopold III of Belgi
## [doc1941]           February – |King | Alfonso XIII of Spai
## [doc1942]                      |King |
## [doc1943] ku Syed Sirajuddin , |King | of Malaysia Mark W. 
## [doc1943] y player Billie Jean |King | , American tennis pl
## [doc1943]             August – |King | Boris III of Bulgari
## [doc1943]               WWII : |King | Boris               
## [doc1944]               WWII : |King | Michael 's Coup :   
## [doc1944]                      |King | George II of Greece 
## [doc1944]             December |King | George II of Greece 
## [doc1944]                      |King | Michael 's Coup : Io
## [doc1944]         ) December – |King | Abbas II of Egypt ( 
## [doc1944] ion ( b. ) January – |King | Yuhi V of Rwanda ( b
## [doc1944]              Charles |King | , American actor ( b
## [doc1944]                      |King | ,                   
## [doc1944] ician ( b. ) Charles |King | , American actor ( b
## [doc1945]               June – |King | Haakon              
## [doc1945] cian July Tiong Thai |King | , Malaysian politici
## [doc1945] . ) December Michael |King | , New Zealand popula
## [doc1946]   Inayatullah Khan , |King | of Afghanistan ( b. 
## [doc1946]                Cissy |King | , American dancer , 
## [doc1946]                Cissy |King | , American dancer , 
## [doc1946] ruling amir Abdullah |king | on day it ratifies T
## [doc1946]                      |King | Victor Emmanuel III 
## [doc1946] t Inayatullah Khan , |King | of Afghanistan ( b. 
## [doc1946]               July – |King | David Hotel bombing 
## [doc1946] idol ( Rama VIII ) , |King | of Thailand ( assass
## [doc1946] June – In Thailand , |King | Bhumibol Adulyadej (
## [doc1947]              Stephen |King | , American writer an
## [doc1947]                      |King | Michael             
## [doc1947]               July – |King | George VI of United 
## [doc1947] poser ( b. ) April – |King | George II of Greece 
## [doc1947] usician , producer ( |King | Crimson , Emerson , 
## [doc1947]           December – |King | Victor Emmanuel III 
## [doc1947]                      |King | Michael             
## [doc1947]              Stephen |King | , American writer an
## [doc1947]              April – |King | Frederik IX succeeds
## [doc1947] English actor ( d. ) |King | Gyanendra of Nepal F
## [doc1948]                 July |King | Baggot , American ac
## [doc1948] an , American singer |King | George Tupou V of To
## [doc1948] e , American actress |King | Charles III of Unite
## [doc1948]            January – |King | Tomislav            
## [doc1948]                      |King | Baggot , American ac
## [doc1948] i kaBhekuzulu , Zulu |king | ( d. )              
## [doc1949] x owner September Ed |King | , American musician 
## [doc1950]        ( Rama IX ) , |king | of Thailand since , 
## [doc1950] lliam Lyon Mackenzie |King | , Canadian political
## [doc1950]                      |King | Gustaf V of Sweden (
## [doc1950]                      |King | Gustaf V of Sweden (
## [doc1950]      April – Belgian |King | Leopold III announce
## [doc1951] r [ ] January Alveda |King | , American activist 
## [doc1951]               July – |King | Leopold III of Belgi
## [doc1951]               July – |King | Abdullah            
## [doc1951] lm of Prussia ( b. ) |King | Abdullah I of Jordan
## [doc1951] ypt declares himself |king | of Sudan , with no s
## [doc1951]                      |King | George VI opens Fest
## [doc1951] d Hammerstein 's The |King | and I opens on Broad
## [doc1951] d Hammerstein 's The |King | and I opens on Broad
## [doc1951]                  May |King |
## [doc1951]                 July |King | Abdullah I of Jordan
## [doc1951]                  Joe |King | , American actor ( b
## [doc1951]                  Joe |King | , American actor ( b
## [doc1952] eath of her father , |King | George VI , aged , t
## [doc1952] y – Vajiralongkorn , |King | of Thailand ( Rama X
## [doc1952] The State Funeral of |King | George VI of United 
## [doc1952]               July – |King | Farouk of Egypt abdi
## [doc1952]           February – |King | George VI of United 
## [doc1952] ir Jigme Wangchuck , |King | of Bhutan ( b. )    
## [doc1952] eath of her father , |King | George VI , aged , t
## [doc1953] ) Norodom Sihamoni , |King | of Cambodia [ ]     
## [doc1953] Mutesa II , kabaka ( |king | ) of Buganda , is de
## [doc1953] ) Norodom Sihamoni , |King | of Cambodia [ ]     
## [doc1953] – Hussein is crowned |King | of Jordan . [ ]     
## [doc1953]                      |King | Carol II of Romania 
## [doc1953]  and activist ( b. ) |King | Ibn Saud of Saudi Ar
## [doc1953] marshal ( b. ) April |King | Carol II of Romania 
## [doc1954] apore December Gayle |King | , African-American t
## [doc1955]        July Adrienne |King | , American actress D
## [doc1956] lifter ( d. ) June – |King | Diamond , Danish hea
## [doc1956]          June Ernest |King | , American Navy Flee
## [doc1956] a December – Bernard |King | , American basketbal
## [doc1956] d Hammerstein 's The |King | and I , starring Deb
## [doc1956] d Hammerstein 's The |King | and I , starring Deb
## [doc1956]               Ernest |King | , American Navy Flee
## [doc1957]                    ) |King | Haakon              
## [doc1957]                      |King | Haakon VII of Norway
## [doc1958]                      |King | Faisal II of Iraq ( 
## [doc1958]                      |King | Faisal is killed .  
## [doc1958]                      |King | Faisal II of Iraq ( 
## [doc1958] dant of Samuel Aba , |King | of Hungary , age , i
## [doc1958] ab Federation , with |King | Faisal II of Iraq as
## [doc1958]         October Mark |King | , English pop -rock 
## [doc1958]                 Mark |King | , English pop -rock 
## [doc1959]            October – |King | Sisavang            
## [doc1959] American singer July |King | Tupou VI of Tonga [ 
## [doc1959]                      |King | Mutara III of Rwanda
## [doc1959]  and comedian ( d. ) |King | Tupou VI of Tonga [ 
## [doc1959]                      |King | Mutara III of Rwanda
## [doc1960] muddin of Selangor , |King | of Malaysia ( b. )  
## [doc1960] of Negeri Sembilan , |King | of Malaysia ( b. )  
## [doc1960]             December |King | Mahendra of Nepal de
## [doc1960]                      |King | Baudouin of Belgium 
## [doc1960]               June – |King | Bhumibol Adulyadej o
## [doc1960]                      |King | Mahendra of Nepal de
## [doc1960]                      |King | Baudouin of Belgium 
## [doc1960] of Negeri Sembilan , |King | of Malaysia ( b. )  
## [doc1960]  Norodom Suramarit , |King | of Cambodia ( b. ) A
## [doc1961]                      |King | Mohammed V of Morocc
## [doc1961] Hassan II is crowned |King | of Morocco .        
## [doc1961] ember – Charles D.B. |King | ,                   
## [doc1961]                      |King | Mohammed V of Morocc
## [doc1962]              January |King | Abdullah II of Jorda
## [doc1962]  – Ahmad bin Yahya , |King | of Yemen ( b. )     
## [doc1963] pril – Martin Luther |King | , Jr. issues his Let
## [doc1963] tress ( d. ) Bernice |King | , American activist 
## [doc1963] er ( Europe ) August |King | Mohammed VI of Moroc
## [doc1963]         June – Anita |King | , American actress a
## [doc1963]          September – |King | Fahd University of P
## [doc1964]     Paul of Greece , |King | of Greece ( born ) E
## [doc1964] nchen , Sichuan 's ' |King | of Opium ' ( born ) 
## [doc1964] tember – In Athens , |King | Constantine II of Gr
## [doc1964]                March |King | Saud of Saudi Arabia
## [doc1964] rch Paul of Greece , |King | of Greece ( born ) E
## [doc1964]                      |King | Saud of Saudi Arabia
## [doc1965]          September – |King | Constantine II of Gr
## [doc1965]              March – |King | Farouk of Egypt ( b.
## [doc1965]       October – Bart |King | , American cricketer
## [doc1966]               July – |King | Mwambutsa IV Bangiri
## [doc1967] der of Netherlands , |King | of Netherlands Aki A
## [doc1967]           December – |King | Constantine II of Gr
## [doc1968]                      |King | -assassination riots
## [doc1968] ican actor January – |King | Felipe VI of Spain F
## [doc1969]  Abdulaziz Al Saud , |King | of Saudi Arabia ( b.
## [doc1969]  Abdulaziz Al Saud , |King | of Saudi Arabia ( b.
## [doc1970]                      |King | Hussein of Jordan or
## [doc1970]          September – |King | Hussein of Jordan fo
## [doc1971] 400 cadets take over |king | 's palace for hours 
## [doc1971] gist ( b. ) August – |King | Curtis , American sa
## [doc1971] otorcycle racer June |King | Dipendra of Nepal ( 
## [doc1971]                      |King | Dipendra of Nepal ( 
## [doc1971]     January – Regina |King | , American actress [
## [doc1972]            January – |King | Frederick IX of Denm
## [doc1972]               July – |King | Jigme Singye Wangchu
## [doc1972]                      |King | Talal of Jordan ( b.
## [doc1972] Ghana ( b. ) April – |King | Ntare V of Burundi (
## [doc1972]  of Windsor , former |King | Edward VIII of Unite
## [doc1972]                      |King | Talal of Jordan ( b.
## [doc1972]            January – |King | Mahendra of Nepal ( 
## [doc1972] ympic athlete ( b. ) |King | Jigme Dorji Wangchuc
## [doc1972]  of Windsor , former |King | Edward VIII of Unite
## [doc1972]            January – |King | Birendra succeeds hi
## [doc1973] s ( b. ) September – |King | Gustaf VI Adolf of S
## [doc1973]               July – |King | Mohammed Zahir Shah 
## [doc1974] e – Alberta Williams |King | ,                   
## [doc1974] ife of Martin Luther |King | , Sr. , and mother o
## [doc1975]                      |King | Faisal of Saudi Arab
## [doc1975] ger ( b. ) [ ] March |King | Faisal of Saudi Arab
## [doc1975]              March – |King | Faisal of Saudi Arab
## [doc1976]   December – Freddie |King | , American rock guit
## [doc1978]               June – |King | Hussein of Jordan ma
## [doc1978]  ) February – Warren |King | , American cartoonis
## [doc1978]           February – |King | Dragon operation in 
## [doc1979] an of Terengganu and |King | of Malaysia ( b. )  
## [doc1979] an of Terengganu and |King | of Malaysia ( b. )  
## [doc1987]                  The |King | 's Cross fire on Lon
## [doc1987]         November The |King | 's Cross fire on Lon
## [doc1991]  V of Norway becomes |king | of Norway after deat
## [doc1991]  remains of Prussian |King | Frederick Great are 
## [doc1991]  V of Norway becomes |king | of Norway after deat
## [doc1993]  Norodom Sihanouk as |king | .                   
## [doc1993]             August – |King | Albert II of Belgium
## [doc1994]             The Lion |King | , highest - grossing
## [doc1994]  of several Scottish |kings| as well as monarchs 
## [doc1994]             The Lion |King | , highest - grossing
## [doc1999]                  The |King | of Bhutan allows tel
## [doc1999] I of Morocco becomes |king | upon death of his fa
## [doc1999] I of Morocco becomes |king | upon death of his fa
## [doc2001] l kills his father , |king | , his mother and oth
## [doc2001]                      |King | Dipendra died days l
## [doc2001] o effectively became |king | upon his father 's d
## [doc2001] l kills his father , |king | , his mother and oth
## [doc2011]         Al Khalifa , |King | of Bahrain , declare
## [doc2019]                      |King | Vajiralongkorn of Th
## [doc2019] s after abdication , |King | Juan Carlos I of Spa
## [doc2019] s after abdication , |King | Juan Carlos I of Spa
## [doc2023] s III and Camilla as |King | and Queen of United
docs %>%
  filter(doc_id %in% get) %>%
  group_by(decade) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = decade, y = num)) +
  geom_col(fill = "cyan") +
  labs(title = "King", subtitles = "Number of Wikipedia Pages of Years That Mention King For Each Decade", x = "Decade", y = "Number of Years")

get <- dsst_kwic(anno, terms = "queen", n = 2000000000000) %>%
  substr(2,8)
## [doc0001] d. ) Amanishakheto , |queen| of Kush ( Nubia )   
## [doc0028] nice , Jewish client |queen| of Judea Silius Ital
## [doc0051] y with Cartimandua , |queen| of Brigantes in nort
## [doc0052] nasty Julia Iotapa , |queen| of Commagene ( appro
## [doc0054] x-wife Cartimandua , |queen| of Brigantes and a R
## [doc0055] haena , Roman client |queen| ( b. )              
## [doc0060]  ) Boudica , British |queen| of Iceni tribe ( app
## [doc0061]    Boudica , British |queen| of Iceni tribe ( app
## [doc0240] ate date ) Zenobia , |queen| of Palmyrene Empire 
## [doc0248] ngi Wao ) , Japanese |queen| ( b. ) Trieu        
## [doc0274] ) Septimia Zenobia , |queen| of Palmyrene Empire 
## [doc0275] an Kingdom Zenobia , |queen| of Palmyrene Empire 
## [doc0369] harantzem , Armenian |queen| and regent ( approxi
## [doc0370] harantzem , Armenian |queen| and regent ( approxi
## [doc0390] itician Chen Guinü , |queen| consort of Jin Xiaow
## [doc0425] via , Arab warrior - |queen| Sulpicius Severus , 
## [doc0438]             Basina , |queen| of Thuringia ( appro
## [doc0439]     Eudocia , Vandal |queen| and daughter of Vale
## [doc0471] m ) Eudocia , Vandal |queen| and daughter of Vale
## [doc0477] r militum ) Basina , |queen| of Thuringia ( Germa
## [doc0499]             Ingund , |queen| of Franks ( approxim
## [doc0500] ate date ) Aregund , |queen| of Franks ( approxim
## [doc0501] delinda , Burgundian |queen| consort             
## [doc0518]         Matasuntha , |queen| of Ostrogoths ( appr
## [doc0531]  Clotilde , Visigoth |queen| and daughter of Clov
## [doc0533] mission of Ostrogoth |queen| Amalasuntha , daught
## [doc0536] suntha ( daughter of |queen| Amalasuntha ) .     
## [doc0540] lswintha , Neustrian |queen| , married to Chilper
## [doc0543]          Brunhilda , |queen| of Austrasia ( appro
## [doc0561]  of Franks Aregund , |queen| of Franks Chram , Fr
## [doc0568]         Galswintha , |queen| consort of Neustria 
## [doc0570] ( d. ) Theodelinda , |queen| of Lombards ( d. ) J
## [doc0580]  slandering Frankish |queen| Fredegund ( approxim
## [doc0583] eeds Kan B'alam I as |queen| of Maya city of Pale
## [doc0584] r sister Brunhilda , |queen| mother of Austrasia 
## [doc0590]  Sichilde , Frankish |queen| ( d. ) Theodore Rsht
## [doc0591] lulf marries widowed |queen| Theodelinda and is b
## [doc0591]  date ) Gundeberga , |queen| of Lombards Li Xiaog
## [doc0597]          Fredegund , |queen| and regent of Neustr
## [doc0598] omentrude , Frankish |queen| consort ( fl. )     
## [doc0601] - born Anglo - Saxon |queen| consort , canonized 
## [doc0610]  Nanthild , Frankish |queen| ( approximate date )
## [doc0612] j Ne ' Yohl Mat , as |queen| of Maya state of Pal
## [doc0613]          Brunhilda , |queen| of Austrasia Priscus
## [doc0617]  Lady K’awiil Ajaw , |queen| regnant of Maya city
## [doc0626]    April – Eanflæd , |queen| of Northumbria Balth
## [doc0627]  Sichilde , Frankish |queen| King Stephen I of Ib
## [doc0628] reland Theodelinda , |queen| of Lombards Tong Yab
## [doc0631]         Borandukht , |queen| of Persian Empire Ci
## [doc0632]  Seondeok is crowned |queen| of Silla ( Korea ) .
## [doc0633]  Burgundy Jamadevi , |queen| of Hariphunchai ( Th
## [doc0639] brothers and widowed |queen| Nanthild ( regent on
## [doc0640] ember – Sak K'uk ' , |queen| of Palenque [ ]     
## [doc0641] egent ( alongside of |queen| mother Nanthild ) of
## [doc0642]  Nanthild , Frankish |queen| Pulakeshin II , king
## [doc0642] Emma , Anglo - Saxon |queen| Eowa , king of Merci
## [doc0647]  Æthelburh of Kent , |queen| of Northumbria Felix
## [doc0647]           Seondeok , |queen| of Silla ( Korea ) [
## [doc0647]      Jindeok becomes |queen| of Korean kingdom of
## [doc0654] ) Jindeok of Silla , |queen| of Silla [ ]        
## [doc0661]  III of Neustria and |queen| regent Balthild foun
## [doc0673]          Æthelburg , |queen| of Wessex ( approxim
## [doc0674] Æthelthryth , former |queen| of Northumbria , giv
## [doc0674]           Seaxburh , |queen| of Wessex ( approxim
## [doc0675] Bilichild , Frankish |queen| Childeric II , king 
## [doc0679] June – Æthelthryth , |queen| of Northumbria Octob
## [doc0680] January – Balthild , |queen| of Franks October – 
## [doc0681]  Queen Jaui , Korean |queen| consort Queen Munmye
## [doc0682]  Lady K’awiil Ajaw , |queen| regnant of Maya city
## [doc0686] ate date ) Eanflæd , |queen| of Northumbria ( app
## [doc0692] rothildis , Frankish |queen| regent output { font
## [doc0697]  Neustria Osthryth , |queen| of Mercia ( English 
## [doc0699] ss Seaxburh of Ely , |queen| of Kent Werburgh , A
## [doc0718]               Former |queen| Cuthburh of Northumb
## [doc0721] jority , becomes new |queen| of Mayan city state 
## [doc0740] abasdos Frithugyth , |queen| of Wessex Gregory , 
## [doc0740]  general Æthelburg , |queen| of Wessex Æthelheard
## [doc0741]           Sky , Maya |queen| of Naranjo March – H
## [doc0741] w ( Lady Six Sky ) , |queen| of Mayan city state 
## [doc0754] f Vinzgau , Frankish |queen| and wife of Charlema
## [doc0762] thumbria marries his |queen| , Æthelthryth , at C
## [doc0765]  Fastrada , Frankish |queen| consort ( d. ) Han H
## [doc0778] engarde of Hesbaye , |queen| of Franks ( d. ) Ish
## [doc0780]         Himiltrude , |queen| consort of Charlemag
## [doc0783]  April – Hildegard , |queen| consort of Charlemag
## [doc0783]  , and makes her his |queen| at Worms .          
## [doc0783] – Bertrada of Laon , |queen| consort of Pepin Sho
## [doc0794]  Fastrada , Frankish |queen| consort ( b. )      
## [doc0795] f Bavaria , Frankish |queen| ( or 797/805 )      
## [doc0800]  Luitgard , Frankish |queen| and wife of Charlema
## [doc0803] f Altdorf , Frankish |queen| and wife of King Lou
## [doc0808] f Altdorf , Frankish |queen| ( or )              
## [doc0818] tober – Ermengarde , |queen| of Franks [ ]       
## [doc0823] entrude of Orléans , |queen| of Franks ( d. ) Muh
## [doc0826]  Burgundy , Frankish |queen| ( approximate date )
## [doc0834] - Minded , Icelandic |queen| Euthymius I , Ecumen
## [doc0838] with , Anglo - Saxon |queen| ( approximate date )
## [doc0843] Judith of Flanders , |queen| of Wessex and counte
## [doc0845] of Saxony , Frankish |queen| ( approximate date )
## [doc0850] an ( d. ) Adelaide , |queen| of West Frankish Kin
## [doc0852] Ermengard of Italy , |queen| regent of Provence (
## [doc0853] im ( d. ) Adelaide , |queen| of West Frankish Kin
## [doc0854] mate date ) Osburh , |queen| of Wessex ( approxim
## [doc0856]       She is crowned |queen| and anointed by Hinc
## [doc0860] Bertila of Spoleto , |queen| of Italy ( approxima
## [doc0865] te date ) Jinseong , |queen| of Silla ( approxima
## [doc0868] of Troyes , Frankish |queen| ( d. ) Xu Jie , Chin
## [doc0869] entrude of Orléans , |queen| of Franks ( b. ) Gun
## [doc0870]  Teutberga , widow - |queen| of Lothair II . [ ] 
## [doc0874]  d. ) Ota , Frankish |queen| and Holy Roman Empre
## [doc0875] vember – Teutberga , |queen| of Lotharingia ' Abd
## [doc0876] cellor ( d. ) Toda , |queen| of Pamplona ( d. ) J
## [doc0880] ermandois , Frankish |queen| ( approximate date )
## [doc0880]  Burgundy , Frankish |queen| ( or )              
## [doc0882]  Burgundy , Frankish |queen| ( or )              
## [doc0885] of Saxony , Frankish |queen| Chen Ru , Chinese wa
## [doc0887] ch . [ ] Frederuna , |queen| of West Frankish Kin
## [doc0888] with , Anglo - Saxon |queen| Al - Mundhir , Musli
## [doc0894] ximate date ) Emma , |queen| of West Frankish Kin
## [doc0894] ilda of Ringelheim , |queen| of Germany ( approxi
## [doc0897] Ermengard of Italy , |queen| and regent of Proven
## [doc0897] of London Jinseong , |queen| of Silla ( Korea )  
## [doc0901] ovember – Adelaide , |queen| of West Frankish Kin
## [doc0902] ate date ) Eadgifu , |queen| and wife of Charles 
## [doc0902] cember – Ealhswith , |queen| and wife of Alfred G
## [doc0903] of Troyes , Frankish |queen| ( b. )              
## [doc0907] of Swabia , Frankish |queen| ( approximate date )
## [doc0910] d , Norwegian Viking |queen| ( approximate date )
## [doc0910] - Saxon princess and |queen| of Germany ( d. ) Fe
## [doc0911] ) Willa of Tuscany , |queen| consort of Italy ( o
## [doc0912] ) Willa of Tuscany , |queen| consort of Italy ( o
## [doc0913]  Gerberga , Frankish |queen| and regent ( approxi
## [doc0915] Bertila of Spoleto , |queen| of Italy Cutheard , 
## [doc0916] r ingen Cearbhaill , |queen| of Laigin Tighearnac
## [doc0916] ( Wales ) , and take |queen| and - others captive
## [doc0917] runa , West Frankish |queen| ( b. )              
## [doc0921] al Elvira Menéndez , |queen| of Galicia and León 
## [doc0923] August – Ageltrude , |queen| of Italy and Holy Ro
## [doc0931] ermandois , Frankish |queen| Gausbert , count of 
## [doc0934] er November – Emma , |queen| of West Frankish Kin
## [doc0936] e ) Zhou ( Elder ) , |queen| consort of Southern 
## [doc0936] di Mahadevi , Indian |queen| regnant             
## [doc0940] he of Anjou , French |queen| and regent ( d . ) A
## [doc0941] gen Cennétig , Irish |queen| Qian Yuanguan , king
## [doc0943]            Matilda , |queen| consort of Burgundy 
## [doc0945] f Aquitaine , French |queen| consort ( or ) Al - 
## [doc0946]  January – Eadgyth , |queen| consort of Germany (
## [doc0948] d. ) Emma of Italy , |queen| of West Frankish Kin
## [doc0948]  Flann Sinna , Irish |queen| Ibrahim ibn Simjur ,
## [doc0952] f Aquitaine , French |queen| consort ( or )      
## [doc0958] . ) October – Toda , |queen| of Pamplona ( b. ) d
## [doc0960] gen Murchada , Irish |queen| ( d. ) Gotthard , bi
## [doc0961] te ) Mahendradatta , |queen| of Bali ( Indonesia 
## [doc0964]  ( Elder ) , Chinese |queen| consort Al - Hasan i
## [doc0964]  Burgundy , Frankish |queen| consort ( d. ) Heona
## [doc0966] of Swabia , Frankish |queen| consort Cormac ua Ci
## [doc0966]          Heonjeong , |queen| of Goryeo ( Korea ) 
## [doc0968] ingelheim , Frankish |queen| March – Emma of Pari
## [doc0969] ngary , princess and |queen| of Poland ( d. ) Liu
## [doc0970] ) Willa of Tuscany , |queen| consort of Italy    
## [doc0976] r – Helen of Zadar , |queen| of Croatia October –
## [doc0976] d emir Sun Taizhen , |queen| of Wuyue ( Ten Kingd
## [doc0978]  Elvira of Castile , |queen| consort of León ( ap
## [doc0979] trid ( or Astrid ) , |queen| consort of Sweden ( 
## [doc0980] d , Norwegian Viking |queen| ( approximate date )
## [doc0982] November – Matilda , |queen| of Burgundy ( or ) A
## [doc0984]  Gerberga , Frankish |queen| ( approximate date )
## [doc0984] mandy , noblewoman , |queen| consort of England (
## [doc0985] ela ( or Gizella ) , |queen| of Hungary ( d .    
## [doc0986] ce of Arles , French |queen| ( approximate date )
## [doc0988]  Judith of Hungary , |queen| of Poland ( approxim
## [doc0992]          Heonjeong , |queen| of Goryeo ( Korea ) 
## [doc0996]  ) Elvira Menéndez , |queen| consort of León ( ap
## [doc0996]     Oda of Meissen , |queen| consort of Poland ( 
## [doc0997] ire Teresa Ansúrez , |queen| and regent of León M
## [doc1000]  Ælfthryth , English |queen| and wife of Edgar I 
## [doc1000] an Tyra of Denmark , |queen| consort of Norway Uk
## [doc1003] pt ) Rozala , French |queen| and countess of Flan
## [doc1003]              Didda , |queen| consort and regent o
## [doc1003] of Arles who becomes |queen| consort of France . 
## [doc1004] f Aquitaine , French |queen| consort Aderald , Fr
## [doc1007] Fernández , Galician |queen|
## [doc1011] te ) Mahendradatta , |queen| of Bali ( b. ) Muham
## [doc1013] za ( or Adelaide ) , |queen| of Hungary ( d . ) A
## [doc1015] mesinda of Bigorre , |queen| of Aragon ( d. ) Eus
## [doc1017]  Elvira of Castile , |queen| consort of León Emni
## [doc1020]  of Denmark , German |queen| ( approximate date )
## [doc1022]  – Elvira Menéndez , |queen| of León Al - Shaykh 
## [doc1025]  of Wessex , English |queen| ( approximate date )
## [doc1025] r , Norwegian Viking |queen| William VIII , Frenc
## [doc1026] he of Anjou , French |queen| and regent Frederick
## [doc1029] ry – Heonae , Korean |queen| consort and regent (
## [doc1030] nne of Kiev , French |queen| and regent ( approxi
## [doc1030] gen Murchada , Irish |queen| ( b. )              
## [doc1031] atilda of Flanders , |queen| consort of England (
## [doc1032] ce of Arles , French |queen| July – Matilda of Sw
## [doc1035] Astrid Olofsdotter , |queen| consort of Norway ( 
## [doc1038]  of Denmark , German |queen| August – Stephen I ,
## [doc1045]  Probable Margaret , |queen| of Scotland ( d. ) [
## [doc1046]    May – Constance , |queen| of Castile and León 
## [doc1048]  Arwa al - Sulayhi , |queen| and co-ruler of Yeme
## [doc1049] mesinda of Bigorre , |queen| of Aragon ( b. ) Air
## [doc1052] – Emma of Normandy , |queen| consort of England (
## [doc1054] cht ingen Ragnaill , |queen| consort of Munster N
## [doc1054] ) Judith of Swabia , |queen| consort of Hungary (
## [doc1055]  of Holland , French |queen| consort ( d. ) Fujiw
## [doc1058]           Synadene , |queen| consort of Hungary (
## [doc1060] ] Felicia of Roucy , |queen| of Aragon and Navarr
## [doc1063] eza of Lotharingia , |queen| of Poland April – Re
## [doc1064]  Adela of Flanders , |queen| of Denmark ( approxi
## [doc1065] ela ( or Gizella ) , |queen| consort of Hungary (
## [doc1067]  of Kiev , Norwegian |queen| Eric and Eric , Swed
## [doc1067] r – Sancha of León , |queen| of León December –  
## [doc1068]       She is crowned |queen| in Westminster Abbey
## [doc1068] ds , and becomes his |queen| and co-regent .     
## [doc1070] rtrade de Montfort , |queen| of France ( d. ) But
## [doc1071] Isabella of Urgell , |queen| consort of Aragon Ro
## [doc1071] ds , and becomes his |queen| and co-regent .     
## [doc1072] Agnes of Aquitaine , |queen| of Aragon and Navarr
## [doc1073]  ) Lady Six Monkey , |queen| regnant of Mixtec ci
## [doc1074] d poet ( d. ) Maud , |queen| of Scotland ( approx
## [doc1075] cily ( d. ) Bertha , |queen| of Aragon and Navarr
## [doc1075] elaide ) , Hungarian |queen| June – Gebhard of Su
## [doc1075]  of Wessex , English |queen| Ali ibn Ahmad al - N
## [doc1076] ) Hualani , Hawaiian |queen| and regent ( approxi
## [doc1079]          Constance , |queen| of Castile and León 
## [doc1079]     April – Urraca , |queen| regnant of León , Ca
## [doc1080]           Portuguese |queen| and regent ( d. ) Wa
## [doc1080] atilda of Scotland , |queen| of England ( d. ) [ 
## [doc1083] atilda of Flanders , |queen| of England December 
## [doc1087]   Asma bint Shihab , |queen| and co-regent of Yem
## [doc1088] gh ingen Áed , Irish |queen| of Munster Hugh de M
## [doc1090] ide of Rheinfelden , |queen| consort of Hungary [
## [doc1091]  Helena of Hungary , |queen| of Croatia ( approxi
## [doc1092] laide de Maurienne , |queen| of France ( d. ) Al 
## [doc1092] ybilla of Normandy , |queen| of Scotland ( d.    
## [doc1093]          Constance , |queen| of Castile and León 
## [doc1093] ovember – Margaret , |queen| of Scotland ( b. ) [
## [doc1094]  of Holland , French |queen| Fujiwara no Nobunaga
## [doc1094]  of Holland , French |queen| Fujiwara no Nobunaga
## [doc1095] kansdotter , Swedish |queen| ( d. ) Victor IV ( O
## [doc1097] Agnes of Aquitaine , |queen| of Aragon and Navarr
## [doc1100]  Elvira of Castile , |queen| of Sicily ( approxim
## [doc1100]  ) Lady Six Monkey , |queen| regnant of Mixtec ci
## [doc1102]  Felicia of Sicily , |queen| of Hungary ( approxi
## [doc1103]  or Bodil ) , Danish |queen| Ebles II , French no
## [doc1103] in ( or Adelicia ) , |queen| of England ( d. ) Aé
## [doc1105] atilda of Boulogne , |queen| of England ( d. ) Ma
## [doc1109] er – Gongye , Korean |queen| ( d. ) October – Inj
## [doc1109] raca of León becomes |queen| of León , Castile an
## [doc1110] of Sulzbach , German |queen| ( approximate date )
## [doc1115]  Adela of Flanders , |queen| of Denmark ( b.     
## [doc1116]  Richeza of Poland , |queen| of Sweden ( d. ) Aug
## [doc1116] garia of Barcelona , |queen| of León and Castile 
## [doc1117] de Montfort , French |queen| ( b. ) April –      
## [doc1118] ristina of Denmark , |queen| of Norway ( approxim
## [doc1118] ) Jaquinta of Bari , |queen| of Duklja Lidanus , 
## [doc1118] atilda of Scotland , |queen| of England ( b. c.10
## [doc1120]           Ingegerd , |queen| of Denmark and Swede
## [doc1122] eanor of Aquitaine , |queen| of France and Englan
## [doc1122] ybilla of Normandy , |queen| of Scotland Wang Jha
## [doc1122] eanor of Aquitaine , |queen| of France and Englan
## [doc1122] ybilla of Normandy , |queen| of Scotland Wang Jha
## [doc1123] – Felicia of Roucy , |queen| of Aragon and Navarr
## [doc1124] chess of Aquitaine , |queen| consort successively
## [doc1125] ) Matilda of Savoy , |queen| consort of Portugal 
## [doc1125] ) Matilda of Savoy , |queen| consort of Portugal 
## [doc1126] etoslawa of Poland , |queen| of Bohemia October –
## [doc1126] ibylla of Burgundy , |queen| of Sicily ( d. ) Svi
## [doc1126]     March – Urraca , |queen| regnant of León and 
## [doc1127] orphia of Melitene , |queen| of Jerusalem ( or ) 
## [doc1131] aud ( or Matilda ) , |queen| of Scotland Meng , C
## [doc1133]  Urraca of Castile , |queen| of Navarre ( d. ) Zh
## [doc1135] argaret of Navarre , |queen| of Sicily ( approxim
## [doc1138]  Arwa al - Sulayhi , |queen| and co-ruler of Yeme
## [doc1140]  ) Sophia of Minsk , |queen| of Denmark ( d. )   
## [doc1140] Adela of Champagne , |queen| of France ( d . ) Al
## [doc1144]  . ) Maria Komnene , |queen| of Hungary and Croat
## [doc1145] ) Theodora Komnene , |queen| of Jerusalem ( appro
## [doc1145]  ) Christina Hvide , |queen| of Sweden ( approxim
## [doc1146] of Sulzbach , German |queen| ( b. )              
## [doc1148] Urraca of Portugal , |queen| consort of León ( d.
## [doc1149] garia of Barcelona , |queen| of Castile ( b. )   
## [doc1150] ibylla of Burgundy , |queen| of Sicily ( b. )    
## [doc1150] . ) Umadevi , Indian |queen| and general ( d. ) W
## [doc1151] Adeliza of Louvain , |queen| of Henry I of Englan
## [doc1152] atilda of Boulogne , |queen| of England June –   
## [doc1153]  Sibylla of Acerra , |queen| and regent of Sicily
## [doc1154] ) Agnes of Austria , |queen| of Hungary ( d. ) Be
## [doc1154] f Maurienne , French |queen| ( b.                
## [doc1154] mber – Constance I , |queen| of Sicily ( d. )    
## [doc1156]  Blanca of Navarre , |queen| of Castile November 
## [doc1157] Henry Young King and |queen| of Hungary and Croat
## [doc1158] , as future wife and |queen| .                   
## [doc1160]  ) Dulce of Aragon , |queen| of Portugal ( d. ) E
## [doc1160] nstance of Castile , |queen| of France ( b. )    
## [doc1161] Eleanor of England , |queen| of Castile ( d. ) Gu
## [doc1161] tember – Melisende , |queen| of Jerusalem ( b. ) 
## [doc1162] gharad ferch Owain , |queen| of Gwynedd ( b. )   
## [doc1165]  ) Joan of England , |queen| of Sicily ( d. ) Phi
## [doc1166] ( d. ) Tamar Great , |queen| of Georgia ( d. ) Wa
## [doc1170] stina Björnsdotter , |queen| of Sweden ( b. )    
## [doc1170] ngarde de Beaumont , |queen| of Scotland ( d. ) E
## [doc1170] abella of Hainault , |queen| of France ( d. ) May
## [doc1172]  ( d. ) Isabella I , |queen| and regent of Jerusa
## [doc1173] tober – Petronilla , |queen| of Aragon ( b. )    
## [doc1173] 74 , in which former |Queen| Eleanor of Aquitaine
## [doc1174] ngeborg of Denmark , |queen| of France ( d. ) Liu
## [doc1176] heresa of Portugal , |queen| of León ( d. ) Willi
## [doc1179] astile ( Alfonso ) , |queen| of Navarre ( b. )   
## [doc1180] rengaria ( Great ) , |queen| of Castile and León 
## [doc1180] Fernández de Traba , |queen| of León March – Al -
## [doc1181]     Irene Angelina , |queen| of Germany and Sicil
## [doc1181]   Adela of Meissen , |queen| consort of Denmark N
## [doc1182] ria of Montpellier , |queen| consort of Aragon ( 
## [doc1183] ueen Gongye , Korean |queen| consort ( b. ) [ ] [
## [doc1184]   Agnes of Antioch , |queen| of Hungary ( approxi
## [doc1185]  Richeza of Poland , |queen| of Castile ( b. )   
## [doc1185] ertrude of Merania , |queen| of Hungary ( d. ) In
## [doc1186] rced possible future |Queen| into promising shoul
## [doc1186] . ) [ ] date unknown |Queen| Urraca of Portugal ,
## [doc1188] Blanche of Castile , |queen| and regent of France
## [doc1190] lla ( or Sibylle ) , |queen| of Jerusalem ( b. ) 
## [doc1190] er Joan of England , |queen| of Sicily , who is h
## [doc1190]      Maria Komnene , |queen| of Hungary and Croat
## [doc1191]  ) Mór Ní Tuathail , |queen| of Leinster ( approx
## [doc1193] Alice of Champagne , |queen| of Cyprus ( d. ) Alt
## [doc1194] ate date ) Rusudan , |queen| of Georgia ( House o
## [doc1196]  Eschiva of Ibelin , |queen| consort of Cyprus ( 
## [doc1197] ertrude of Bavaria , |queen| consort of Denmark J
## [doc1198] n ( or Barcelona ) , |queen| of Portugal ( b. )  
## [doc1198]        Constance I , |queen| regent of Sicily ( b
## [doc1198]        Constance I , |queen| regent of Sicily ( b
## [doc1198] ybilla of Lusignan , |queen| of Lesser Armenia ( 
## [doc1199] besdotter of Hvide , |queen| of Sweden ( or )    
## [doc1199]    Joan of England , |queen| of Sicily ( b. ) [ ]
## [doc1200] besdotter of Hvide , |queen| of Sweden ( or )    
## [doc1201] – Agnes of Merania , |queen| consort of King Phil
## [doc1202] de of Hohenstaufen , |queen| of Bohemia ( d. ) Ma
## [doc1202]     II of Boulogne , |queen| consort of Portugal 
## [doc1204] gnant of Aquitaine , |queen| of France and Englan
## [doc1205]         Isabella I , |queen| and regent of Jerusa
## [doc1205] lisabeth of Swabia , |queen| of Castile and León 
## [doc1205]  Sibylla of Acerra , |queen| and regent of Sicily
## [doc1206]    Maria Laskarina , |queen| consort of Hungary (
## [doc1206]    Maria Laskarina , |queen| consort of Hungary (
## [doc1206] Adela of Champagne , |queen| of France ( b. ) unk
## [doc1208] t – Irene Angelina , |queen| of Sicily and German
## [doc1208] garet Skulesdatter , |queen| consort of Norway ( 
## [doc1208] dget Haraldsdotter , |queen| of Sweden ( approxim
## [doc1208]  Sancha of Castile , |queen| consort of Aragon De
## [doc1209] Margaret of Sweden , |queen| consort of Norway ( 
## [doc1209]    [ ] Tamar Great , |queen| of Georgia , raids E
## [doc1210] lice of Montferrat , |queen| consort of Cyprus ( 
## [doc1210]  – Joan of England , |queen| of Scotland ( d. ) [
## [doc1211] leanor of Portugal , |queen| consort of Denmark (
## [doc1211] Urraca of Portugal , |queen| consort of León ( b.
## [doc1212]  Dagmar of Bohemia , |queen| of Denmark July – Jo
## [doc1212] ( d. ) Isabella II , |queen| and regent of Jerusa
## [doc1212] aria of Montferrat , |queen| of Jerusalem ( b. ) 
## [doc1213] ertrude of Merania , |queen| consort regent of Hu
## [doc1214] Eleanor of England , |queen| of Castile ( b. )   
## [doc1215] écia Lopes de Haro , |queen| of Portugal ( d. ) O
## [doc1215] ) Beatrice d' Este , |queen| consort of Hungary (
## [doc1217]      Maria Komnene , |queen| consort of Jerusalem
## [doc1218] ght Umadevi , Indian |queen| and general ( b. ) W
## [doc1218] . ) Marie de Coucy , |queen| consort of Scotland 
## [doc1220]  Urraca of Castile , |queen| of Portugal ( b. ) A
## [doc1220] Richeza of Denmark , |queen| of Sweden ( b. )    
## [doc1221] ngaria of Portugal , |queen| of Denmark ( b. ) Ap
## [doc1221] rgaret of Provence , |queen| consort of France ( 
## [doc1222] Holy Roman Empress , |queen| consort of Hungary (
## [doc1223] leanor of Provence , |queen| of England ( d. ) [ 
## [doc1225] anchia of Provence , |queen| of Germany ( d. ) Th
## [doc1225] marries - year - old |Queen| Yolande , heiress to
## [doc1227] isabeth of Bavaria , |queen| consort of Germany (
## [doc1228] pril – Isabella II , |queen| and regent of Jerusa
## [doc1229] atrice of Provence , |queen| consort of Sicily ( 
## [doc1230] raca López de Haro , |queen| of León ( approximat
## [doc1230] engaria of Navarre , |queen| of England Al - Dakh
## [doc1230] et Sambiria , Danish |queen| consort ( d. ) Masuc
## [doc1230] f Brunswick , German |queen| consort ( d . ) Gott
## [doc1231] leanor of Portugal , |queen| of Denmark September
## [doc1233] ngarde de Beaumont , |queen| of Scotland March – 
## [doc1233] landa de Courtenay , |queen| consort of Hungary  
## [doc1235] lisabeth of Swabia , |queen| consort of Castile a
## [doc1236]  Violant of Aragon , |queen| consort of Castile (
## [doc1236] ngeborg of Denmark , |queen| of France ( b. ) Aug
## [doc1236]   Eleanor is crowned |queen| at Westminster Abbey
## [doc1237] ngeborg of Denmark , |queen| of France ( b. )    
## [doc1238]    Joan of England , |queen| consort of Scotland 
## [doc1238] ch Joan of England , |queen| consort of Scotland 
## [doc1240] ptember – Margaret , |queen| of Scotland ( d. ) A
## [doc1240] cember – Constance , |queen| of Bohemia ( b. )   
## [doc1241] Eleanor of Castile , |queen| of Edward I of Engla
## [doc1242] r – Narchat , Moksha |queen| ( b. ) December – Al
## [doc1242] eatrice of Castile , |queen| consort of Portugal 
## [doc1243] with help of Alice , |queen| of Cyprus , whose fo
## [doc1244] Eleanor of Castile , |queen| consort of Aragon ( 
## [doc1244] geborg Eriksdotter , |queen| consort of Norway ( 
## [doc1244]  ) Elizabeth Cuman , |queen| consort of Hungary (
## [doc1245] Rusudan of Georgia , |queen| consort of Georgia (
## [doc1245] unigunda of Halych , |queen| consort of Bohemia (
## [doc1245] t Beatrice d' Este , |queen| consort of Hungary (
## [doc1246] rengaria ( Great ) , |queen| of Castile Alice of 
## [doc1246] bella of Angoulême , |queen| consort of England J
## [doc1246] Alice of Champagne , |queen| and regent of Jerusa
## [doc1248]  Blanche of Artois , |queen| and regent of Navarr
## [doc1248] Kunigunde , Bohemian |queen| consort ( b. ) Decem
## [doc1248] Isabella of Aragon , |queen| consort of France ( 
## [doc1249]       II of Sicily , |queen| consort of Aragon ( 
## [doc1250] rgaret of Burgundy , |queen| of Sicily ( d. )    
## [doc1250] heresa of Portugal , |queen| of León ( b. ) Augus
## [doc1250] claramunda of Foix , |queen| of Majorca ( d. ) Fr
## [doc1252] Blanche of Castile , |queen| of Louis VIII of Fra
## [doc1252] unesdotter , Swedish |queen| consort [ citation n
## [doc1252] unesdotter , Swedish |queen| consort [ citation n
## [doc1253]  crowned as king and |queen| of Lithuania , rulin
## [doc1254] – Marie of Brabant , |queen| of France ( d. ) Jun
## [doc1255] dersdatter Strange , |queen| of Sweden ( b. )    
## [doc1256] argaret of Bourbon , |queen| of Navarre ( b. ) Ap
## [doc1257] nes of Brandenburg , |queen| of Denmark ( d . )  
## [doc1259]  ruler of Boulogne , |queen| consort of Portugal 
## [doc1261] lizabeth of Sicily , |queen| of Hungary ( House o
## [doc1261] of Provence , German |queen| ( b. )              
## [doc1261] rgaret of Scotland , |queen| of Norway ( d. ) Mar
## [doc1261] aisance of Antioch , |queen| consort of Cyprus ( 
## [doc1262] nthia ( or Tyrol ) , |queen| of Germany ( d. )   
## [doc1263] – Yolande of Dreux , |queen| of Scotland ( d. ) H
## [doc1266] argaret of Austria , |queen| of Germany ( b. )   
## [doc1266]  Jadwiga of Kalisz , |queen| consort of Poland ( 
## [doc1266] f Brunswick , German |queen| ( b. )              
## [doc1271] Isabella of Aragon , |queen| of France ( b. ) Feb
## [doc1271] lizabeth of Aragon , |queen| of Portugal ( d. ) G
## [doc1271] Isabella of France , |queen| of Navarre ( b. )   
## [doc1271] Judith of Habsburg , |queen| of Bohemia ( d. ) Ma
## [doc1272]  d. ) Isabel Bruce , |queen| consort of Norway ( 
## [doc1273] isabeth of Bavaria , |queen| of Germany ( b. ) Oc
## [doc1273]  Joan I of Navarre , |queen| of Navarre ( d. ) [ 
## [doc1275] argaret of England , |queen| of Scotland ( b. )  
## [doc1276] rgaret of Lusignan , |queen| of Cilician Armenia 
## [doc1276] argaret of Brabant , |queen| of Germany ( d. ) Oc
## [doc1277]  Falkenburg , German |queen| October – Mastino I 
## [doc1277] eborg Magnusdotter , |queen| of Denmark ( d. ) Is
## [doc1279]  Dammartin , Spanish |queen| consort ( b. ) [ ]  
## [doc1281] ) Agnes of Austria , |queen| of Hungary ( House o
## [doc1281]  Sancia of Majorca , |queen| and regent of Naples
## [doc1282] et Sambiria , Danish |queen| and regent ( b. ) Ro
## [doc1283] Maid of Scotland ) , |queen| of Norway ( b. ) Apr
## [doc1283] ( Maid of Norway ) , |queen| of Scotland ( d. ) A
## [doc1285] hemia of Pomerania , |queen| consort of Denmark (
## [doc1285] unigunda of Halych , |queen| of Bohemia ( b. )   
## [doc1285] – Keran of Lampron , |queen| of Cilician Armenia 
## [doc1286] rk ( Eriksdotter ) , |queen| of Sweden ( b. )    
## [doc1287] geborg Eriksdotter , |queen| consort of Norway ( 
## [doc1288] n ( or Mechthild ) , |queen| consort of Denmark S
## [doc1289] ) Eleanor of Anjou , |queen| consort of Sicily ( 
## [doc1290] ( Maid of Norway ) , |queen| of Scotland ( b. ) N
## [doc1290]  ) Elizabeth Cuman , |queen| of Hungary ( House o
## [doc1290] Eleanor of Castile , |queen| consort of England (
## [doc1290]    Anne of Bohemia , |queen| consort of Bohemia (
## [doc1290] eatrice of Silesia , |queen| of Germany ( House o
## [doc1290] stance of Portugal , |queen| consort of Castile (
## [doc1290] ( Maid of Norway ) , |queen| - designate and heir
## [doc1291] leanor of Provence , |queen| consort of England (
## [doc1292] isenda of Montcada , |queen| and regent of Aragon
## [doc1292] izabeth of Bohemia , |queen| of Bohemia ( d. ) Ja
## [doc1295] rgaret of Provence , |queen| of France ( b. ) Ann
## [doc1295] ia ( or Kujawska ) , |queen| of Hungary ( b. )   
## [doc1296] lanche of Burgundy , |queen| consort of France ( 
## [doc1296] lanche of Burgundy , |queen| consort of France ( 
## [doc1297]  Habsburg , Bohemian |queen| consort ( b. )      
## [doc1297]  Korean princess and |queen| consort ( b. )      
## [doc1298] t – Gongwon , Korean |queen| consort of Goryeo ( 
## [doc1302] onstance of Sicily , |queen| and regent of Aragon
## [doc1302]  Blanche of Artois , |queen| and regent of Navarr
## [doc1303] eatrice of Castile , |queen| consort of Portugal 
## [doc1304] Brandenburg , Danish |queen| ( b. ) December – Jo
## [doc1304] Marie of Luxemburg , |queen| of France and Navarr
## [doc1305] lizabeth of Poland , |queen| consort of Hungary a
## [doc1305] Elisabeth ) , German |queen| consort ( d. ) Khats
## [doc1305]  of Navarre , French |queen| consort and regent (
## [doc1306]  de Burgh is crowned |queen| of Scots .          
## [doc1308] rgaret of Burgundy , |queen| of Sicily ( b. )    
## [doc1308] Borjigin Jintong ) , |queen| consort of Goryeo ( 
## [doc1309] huania ( or Anna ) , |queen| consort of Poland ( 
## [doc1311]  Margaret I , German |queen| and Holy Roman Empre
## [doc1311]  Margaret I , German |queen| and Holy Roman Empre
## [doc1311]  of Brabant , German |queen| consort ( b. ) date 
## [doc1312] abeth of Carinthia , |queen| of Germany ( b. )   
## [doc1313]  Maria of Portugal , |queen| consort of Castile (
## [doc1313] Imagina of Limburg , |queen| consort of Germany (
## [doc1313] fonso 's grandmother |Queen| dowager María de Mol
## [doc1314] ilippa of Hainault , |queen| consort of Edward II
## [doc1314] y – Helen of Anjou , |queen| of Serbia ( b. ) Feb
## [doc1315] rgaret of Burgundy , |queen| consort of France ( 
## [doc1315] rgaret of Burgundy , |queen| consort of France ( 
## [doc1315] claramunda of Foix , |queen| consort of Majorca (
## [doc1315] claramunda of Foix , |queen| consort of Majorca (
## [doc1315] onne of Luxembourg , |queen| consort of France ( 
## [doc1315] ry – Gyeguk , Korean |queen| consort of Goryeo ( 
## [doc1316] ongol noblewoman and |queen| consort July –      
## [doc1317] r – Maria of Bytom , |queen| consort of Hungary a
## [doc1317]  Blanche of Valois , |queen| consort of Germany a
## [doc1317]  Blanche of Valois , |queen| consort of Germany a
## [doc1317] – Viola of Teschen , |queen| consort of Bohemia a
## [doc1318] Margaret of France , |queen| consort of England (
## [doc1318] anish noblewoman and |queen| ( d. )              
## [doc1318] Margaret of France , |queen| consort of England (
## [doc1318] anish noblewoman and |queen| ( d. )              
## [doc1319] n Grand Princess and |queen| [ ]                 
## [doc1319] rice of Luxembourg , |queen| of Hungary [ ]      
## [doc1319] eborg Magnusdotter , |queen| of Denmark ( b. )   
## [doc1319] eborg Magnusdotter , |queen| of Denmark ( b. )   
## [doc1320] zantine princess and |queen| consort Antonius And
## [doc1320] eatrice of Bourbon , |queen| consort of Bohemia (
## [doc1320] zantine princess and |queen| consort Antonius And
## [doc1320] eatrice of Bourbon , |queen| consort of Bohemia (
## [doc1321] ly – Joan of Tower , |queen| consort of Scotland 
## [doc1321]  – María de Molina , |queen| of Castile and León 
## [doc1322] – Marie of Brabant , |queen| consort of France ( 
## [doc1322] eatrice of Silesia , |queen| consort of Germany (
## [doc1323] – Constanza Manuel , |queen| consort of Castile (
## [doc1324] Hedwig of Holstein , |queen| consort of Sweden ( 
## [doc1324] Hedwig of Holstein , |queen| consort of Sweden ( 
## [doc1326]      I of Auvergne , |queen| consort of France ( 
## [doc1326] of Burgundy , former |queen| consort of France ( 
## [doc1327] Elizabeth de Burgh , |queen| of Robert Bruce [ ] 
## [doc1329]    Anne of Bavaria , |queen| consort of Bohemia (
## [doc1330] untess of Burgundy , |queen| dowager of France ( 
## [doc1330] izabeth of Bohemia , |queen| consort of Bohemia (
## [doc1331]  Blanche d' Évreux , |queen| consort of France ( 
## [doc1336] zabeth of Portugal , |queen| consort and saint ( 
## [doc1338]  Joanna of Bourbon , |queen| consort of France ( 
## [doc1339]  Manuel of Castile , |queen| consort of Castile (
## [doc1339]  Manuel of Castile , |queen| consort of Castile (
## [doc1339] ed Kota Rani , Hindu |queen| regnant of Kashmir ,
## [doc1340]           Simonida , |queen| consort of Serbia ( 
## [doc1340]  Margaret Drummond , |queen| consort of Scotland 
## [doc1341]  Martha of Denmark , |queen| consort of Sweden ( 
## [doc1341] – Eleanor of Anjou , |queen| consort of Sicily ( 
## [doc1343] onstance of Aragon , |queen| consort of Sicily ( 
## [doc1343] onstance of Aragon , |queen| consort of Sicily ( 
## [doc1344] Beatrix of Bavaria , |queen| consort of Sweden ( 
## [doc1345] of influence held by |queen| mother in pagan Lith
## [doc1345] stance of Peñafiel , |queen| of Pedro I of Portug
## [doc1345]  Sancia of Majorca , |queen| regent of Naples ( b
## [doc1347] hardis of Schwerin , |queen| consort of Sweden ( 
## [doc1349] onne of Luxembourg , |queen| of John II of France
## [doc1353] garet I of Denmark , |queen| of Haakon VI of Norw
## [doc1353]    Anne of Bavaria , |queen| consort of Bohemia (
## [doc1358] Isabella of France , |queen| of Edward II of Engl
## [doc1358]  Eleanor of Aragon , |queen| of John I of Castile
## [doc1359] eatrice of Castile , |queen| consort of Portugal 
## [doc1360]      I of Auvergne , |queen| consort of France ( 
## [doc1360] lippa of Lancaster , |queen| consort of Portugal 
## [doc1363]   Blanche of Namur , |queen| consort of Sweden ( 
## [doc1364] isenda of Montcada , |queen| consort and regent o
## [doc1365]     Violant of Bar , |queen| regent of Aragon ( d
## [doc1366]    Anne of Bohemia , |queen| of Richard II of Eng
## [doc1367]    Mary of Enghien , |queen| consort of Naples ( 
## [doc1369] ilippa of Hainault , |queen| of Edward III of Eng
## [doc1371] Isabeau de Bavière , |queen| of Charles VI of Fra
## [doc1371] – Jeanne d' Évreux , |queen| consort of France ( 
## [doc1374] ince ( d. ) probable |Queen| Jadwiga of Poland Ki
## [doc1375] t Drummond , dowager |queen| consort of Scotland 
## [doc1375] t Drummond , dowager |queen| consort of Scotland 
## [doc1376] ) Sofia of Bavaria , |queen| consort of Bohemia (
## [doc1377]  Anglesia Visconti , |queen| consort of Cyprus ( 
## [doc1377]  Anglesia Visconti , |queen| consort of Cyprus ( 
## [doc1377] hardis of Schwerin , |queen| consort of Sweden ( 
## [doc1378]  Joanna of Bourbon , |queen| consort of Charles V
## [doc1380] lizabeth of Poland , |queen| consort of Hungary (
## [doc1382]  Eleanor of Aragon , |queen| of John I of Castile
## [doc1386] dwiga , - year - old |queen| regnant of Poland ) 
## [doc1386] mother of overthrown |Queen| Mary of Hungary and 
## [doc1387] who will soon become |queen| in her own right .  
## [doc1389] Isabella of Valois , |queen| consort of England (
## [doc1392] Holy Roman Empress , |queen| consort of Hungary a
## [doc1392] Holy Roman Empress , |queen| consort of Hungary a
## [doc1394]    Anne of Bohemia , |queen| of Richard II of Eng
## [doc1396] ically active Korean |queen| ( b. )              
## [doc1401]  Anabella Drummond , |queen| of Scotland October 
## [doc1401] atherine of Valois , |queen| consort of England f
## [doc1404] r – Marie of Anjou , |queen| of Charles VII of Fr
## [doc1409] Isabella of Valois , |queen| consort of England (
## [doc1412] garet I of Denmark , |queen| regnant of Denmark o
## [doc1415] lippa of Lancaster , |queen| of John I of Portuga
## [doc1416] ay – Anna of Celje , |queen| consort of Poland ( 
## [doc1416] Eleanor of Castile , |queen| consort of Navarre (
## [doc1418] erine of Lancaster , |queen| of Henry III of Cast
## [doc1421] wick - Grubenhagen , |queen| consort of Armenia a
## [doc1426] Eleanor of Navarre , |queen| regnant of Navarre (
## [doc1430]  Margaret of Anjou , |queen| of Henry VI of Engla
## [doc1430] hilippa of England , |queen| consort of Denmark ,
## [doc1431]     Violant of Bar , |queen| regent of Aragon ( b
## [doc1431]     Violant of Bar , |queen| regent of Aragon ( b
## [doc1433] val , French noble , |queen| consort of Naples ( 
## [doc1433] val , French noble , |queen| consort of Naples ( 
## [doc1435] Isabeau of Bavaria , |queen| of Charles VI of Fra
## [doc1437] atherine of Valois , |queen| of Henry V of Englan
## [doc1438]  Keo Phimpha becomes |queen| of Lan Xang for a fe
## [doc1441] te of Savoy , French |queen| ( d. ) March – Marga
## [doc1445] – Leonor of Aragon , |queen| of Portugal ( b. ) A
## [doc1449] i Khatun , Mongolian |queen| Ilham Ghali khan of 
## [doc1449] i Khatun , Mongolian |queen| January – Cecilia of
## [doc1451] Castile , Castillian |queen| regnant and first qu
## [doc1451] Holy Roman Empress , |queen| consort of Hungary a
## [doc1455]  Isabel of Coimbra , |queen| of Portugal ( b. )  
## [doc1455] – Queen Yun , Korean |queen| ( d. ) August – John
## [doc1456] une – Anne Neville , |queen| consort of Richard I
## [doc1457] f Naples , Hungarian |queen| ( d . ) date unknown
## [doc1461] Sophia of Halshany , |queen| consort of Poland ( 
## [doc1463]     Marie of Anjou , |queen| of France , spouse o
## [doc1464] odebrady , Hungarian |queen| consort ( b. )      
## [doc1464] andenburg , Bohemian |queen| ( d. )              
## [doc1465] abella of Clermont , |queen| consort of Naples ( 
## [doc1465]                  His |queen| consort Margaret of 
## [doc1465] Isabella del Balzo , |queen| consort of Naples ( 
## [doc1466]  Elizabeth of York , |queen| of Henry VII of Engl
## [doc1471]  Champa Shin Sawbu , |queen| regnant of Hanthawad
## [doc1471]  Champa Shin Sawbu , |queen| regnant of Hanthawad
## [doc1474] own Anacaona , Taino |queen| and poet ( d . ) Jua
## [doc1474] . ) Anacaona , Taino |queen| and poet ( d . ) Jua
## [doc1477] uchess of Brittany , |queen| of Charles VIII of F
## [doc1479] Eleanor of Navarre , |queen| regnant of Navarre (
## [doc1483] te of Savoy , French |queen| ( b. ) date unknown 
## [doc1485] rch – Anne Neville , |queen| of Richard III of En
## [doc1485] ne of Aragon , first |queen| of Henry VIII of Eng
## [doc1485] ra , Moroccan pirate |queen| Sebastiano del Piomb
## [doc1486] f Denmark , Scottish |queen| consort , daughter o
## [doc1490]  of Aragon Quilago , |queen| regnant of Cochasquí
## [doc1490]  of Aragon Quilago , |queen| regnant of Cochasquí
## [doc1492]  last living Yorkist |queen| , dies in England . 
## [doc1492] guerite de Navarre , |queen| of Henry II of Navar
## [doc1494] uary – Bona Sforza , |queen| of Sigismund I of Po
## [doc1499] – Claude of France , |queen| consort of France , 
## [doc1501] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1501] abella of Burgundy , |queen| of Christian II of D
## [doc1503]     Anacaona , Taino |queen| and poet ( b. )     
## [doc1503]  Elizabeth of York , |queen| of Henry VII of Engl
## [doc1503]     Anacaona , Taino |queen| and poet ( b. )     
## [doc1507] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1507] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1508]  d. ) Jane Seymour , |queen| of Henry VIII of Eng
## [doc1508] Beatrice of Naples , |queen| consort of Hungary (
## [doc1510] i Khatun , Mongolian |queen|
## [doc1510] i Khatun , Mongolian |queen| Agüeybaná , Taino ch
## [doc1512] erine Parr , English |queen| consort ( d. ) [ ] A
## [doc1513] f Saxe - Lauenburg , |queen| of Gustav I of Swede
## [doc1513] ort of Lithuania and |queen| consort of Poland ( 
## [doc1514]   Anne of Brittany , |queen| of Charles VIII of F
## [doc1515]            Quilago , |queen| regnant of Cochasquí
## [doc1515] andenburg , Bohemian |queen| ( b. )              
## [doc1515]            Quilago , |queen| regnant of Cochasquí
## [doc1515]      Mary of Guise , |queen| of James V of Scotla
## [doc1516] garet Leijonhufvud , |queen| of Gustav I of Swede
## [doc1518] erine Howard , fifth |queen| consort of Henry VII
## [doc1518] t – Joan of Naples , |queen| consort of Naples ( 
## [doc1519] Italian noblewoman , |queen| consort of Henry II 
## [doc1519] Isabella Jagiellon , |queen| consort of Hungary (
## [doc1519] erine Howard , fifth |Queen| of Henry VIII of Eng
## [doc1520]  Barbara Radziwill , |queen| of Poland ( d. ) Dec
## [doc1520] adeleine of Valois , |queen| of James V of Scotla
## [doc1522] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1523] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1524] – Claude of France , |queen| consort of Francis I
## [doc1524] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1525] – Eleanor of Viseu , |queen| of João II of Portug
## [doc1526] atherine Jagiellon , |queen| of John III of Swede
## [doc1526] abella of Burgundy , |queen| of Christian II of D
## [doc1533] o becomes his second |queen| consort .           
## [doc1533] rowns Anne Boleyn as |queen| consort of England ,
## [doc1533]         Mary Tudor , |queen| of Louis XII of Fran
## [doc1535]  Katarina Stenbock , |queen| of Gustav I of Swede
## [doc1535] f Saxe - Lauenburg , |queen| of Gustav I of Swede
## [doc1536] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1536] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1536] sed of adultery with |queen| ) ( b. ) [ ]        
## [doc1537] adeleine of Valois , |queen| of James V of Scotla
## [doc1537]       Jane Seymour , |queen| consort of Henry VII
## [doc1539]    Cura Ocllo , Inca |queen| James Beaton , Scott
## [doc1539]    Cura Ocllo , Inca |queen|
## [doc1540]  Cleves , his fourth |Queen| consort ; marriage l
## [doc1540]  Cleves , his fourth |Queen| consort , is annulle
## [doc1541] r – Margaret Tudor , |queen| of James IV of Scotl
## [doc1542] d six days , becomes |queen| regnant on death of 
## [doc1542] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1542] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1545] lisabeth of Valois , |queen| of Philip II of Spai
## [doc1548] arr , sixth and last |Queen| of Henry VIII of Eng
## [doc1549] guerite de Navarre , |queen| of Henry II of Navar
## [doc1549] ays Sri Suriyothai , |queen| consort of Ayutthaya
## [doc1550] Månsdotter , Swedish |queen| ( d . ) December – A
## [doc1551] garet Leijonhufvud , |queen| of Gustav I of Swede
## [doc1551]  Barbara Radziwill , |queen| of Sigismund II of P
## [doc1553] of Lorraine , French |queen| consort ( d.        
## [doc1553]      Mary I rightful |Queen| , following a change
## [doc1557] vember Bona Sforza , |queen| of Sigismund I of Po
## [doc1557] e of Cleves , fourth |queen| of Henry VIII of Eng
## [doc1557]        Bona Sforza , |queen| of Sigismund I of Po
## [doc1558] – Maria of Austria , |queen| of Louis II of Hunga
## [doc1559] Isabella Jagiellon , |queen| consort of Hungary (
## [doc1560] ne – Mary of Guise , |queen| of James V of Scotla
## [doc1560] an Martyr , Georgian |queen| and saint ( d. ) Mar
## [doc1560] oung French king and |queen| are residing .      
## [doc1560] an Martyr , Georgian |queen| and saint ( d. ) Mar
## [doc1564] i Durgavati , Indian |queen| ( b. )              
## [doc1565] en Munjeong , Korean |queen| ( b. )              
## [doc1571] - Lauenburg , Danish |queen| , consort of Christi
## [doc1571] - Lauenburg , Danish |queen| , consort of Christi
## [doc1574]    Anne of Denmark , |queen| of James VI of Scotl
## [doc1574]    Anne of Denmark , |queen| of James VI of Scotl
## [doc1575]  Marie de ' Medici , |queen| of Henry IV of Franc
## [doc1583] atherine Jagiellon , |queen| of John II of Sweden
## [doc1583]  , warrior sovereign |queen| of Ndongo and Matamb
## [doc1584]   Ratu Hijau becomes |queen| regnant of Malay Pat
## [doc1589] therine de' Medici , |queen| of Henry II of Franc
## [doc1590] f Denmark is crowned |queen| consort of Scotland 
## [doc1593] h I.[ ] Irish pirate |queen| Grace O'Malley meets
## [doc1596] r – Anna Jagiellon , |queen| of Poland ( b. ) Sep
## [doc1599]  German princess and |queen| consort of Sweden ( 
## [doc1601]    Anne of Austria , |queen| of Louis XIII of Fra
## [doc1601] of Lorraine , French |queen| consort ( b. ) Febru
## [doc1602] lisabeth of France , |queen| of Philip IV of Spai
## [doc1609] ta Maria of France , |queen| of England , Scotlan
## [doc1610]  governing France as |queen| regent .            
## [doc1610] and executing native |queen| and her children , b
## [doc1613] uchess of Braganza , |queen| consort of Portugal 
## [doc1613] uchess of Braganza , |queen| consort of Portugal 
## [doc1619]    Anne of Denmark , |queen| consort of England ,
## [doc1621]  Katarina Stenbock , |queen| of Gustav I of Swede
## [doc1624] r – Ketevan , former |Queen| Consort of Kakheti (
## [doc1624] r – Ketevan Martyr , |queen| of Kakheti ( b. c . 
## [doc1625]  Holstein- Gottorp , |queen| consort of King Char
## [doc1631] klenburg - Güstrow , |queen| and regent of Denmar
## [doc1636] Holstein - Gottorp , |queen| consort of King Char
## [doc1638]   Theresa of Spain , |queen| consort of Louis XIV
## [doc1638] ortuguese princess , |queen| consort of Charles I
## [doc1642] de ' Medici , French |queen| consort and regent (
## [doc1644] lisabeth of France , |queen| of Philip IV of Spai
## [doc1644] , she is made ruling |queen| of Sweden .         
## [doc1654]  now former reigning |queen| of a Protestant nati
## [doc1655]  German princess and |queen| consort of Sweden ( 
## [doc1656] of Denmark , Swedish |queen| ( d. ) September – T
## [doc1657] – Christina , former |Queen| of Sweden , has Gian
## [doc1658]     Mary of Modena , |queen| of James II of Engla
## [doc1662] otland and Ireland , |queen| regnant ( d. ) [ ] M
## [doc1662]  Louise d' Orléans , |queen| consort of Spain ( d
## [doc1662]  Louise d' Orléans , |queen| consort of Spain ( d
## [doc1666]    Anne of Austria , |queen| of Louis XIII of Fra
## [doc1666] of Conti and titular |queen| of Poland ( d. ) Feb
## [doc1667] ise Gonzaga , Polish |queen| ( b. ) May Marcos Ra
## [doc1669] ta Maria of France , |queen| of England , Scotlan
## [doc1675] [ ] Tarabai , Indian |queen| regent of Maratha Em
## [doc1675] [ ] Tarabai , Indian |queen| regent of Maratha Em
## [doc1681] a Soltan , sovereign |queen| of Qasim Khanate    
## [doc1683] sa of Spain , French |queen| , married to Louis X
## [doc1683] of Ansbach , British |queen| and regent , wife of
## [doc1683] death on July of his |queen| consort , Maria Ther
## [doc1685]  Schwerin , Prussian |queen| consort ( d. ) May –
## [doc1685] k -Lüneburg , Danish |queen| ( b. )              
## [doc1687] orothea of Hanover , |queen| consort of Frederick
## [doc1691] fa'anu Rani Kilege , |queen| mother and regent of
## [doc1691] fa'anu Rani Kilege , |queen| mother and regent of
## [doc1692]  Elisabeth Farnese , |queen| of Philip V of Spain
## [doc1697]  Household to French |queen| Marie Leszczynska ( 
## [doc1697]  Household to French |queen| Marie Leszczynska ( 
## [doc1705] f Braganza , widowed |queen| consort of Charles I
## [doc1711] f Portugal and later |Queen| of Ferdinand VI of S
## [doc1711] Lorraine , Sardinian |queen| consort ( d. ) Octob
## [doc1711] Lorraine , Sardinian |queen| consort ( d. ) Willi
## [doc1715]  Holstein- Gottorp , |queen| consort of King Char
## [doc1718] y – Mary of Modena , |queen| of James II of Engla
## [doc1718]  Victoria of Spain , |queen| regent of Portugal (
## [doc1719] she is recognized as |queen| regnant of Sweden . 
## [doc1724] e of Great Britain , |queen| of Frederick V of De
## [doc1726]  Dorothea of Celle , |queen| consort of George I 
## [doc1730]      Velu Nachiyar , |queen| regnant of Sivaganga
## [doc1732] of Conti and titular |queen| of Poland ( b. )    
## [doc1732] of Conti and titular |queen| of Poland ( b. ) Fra
## [doc1735] y of Betsimisaraka , |queen| regnant ( d . )     
## [doc1735] y of Betsimisaraka , |queen| regnant ( d . )     
## [doc1735]  Schwerin , Prussian |queen| consort ( b. ) Augus
## [doc1737] aroline of Ansbach , |queen| of George II of Grea
## [doc1738] n Dadiani , Georgian |queen| consort ( d . )     
## [doc1741] Lorraine , Sardinian |queen| consort ( b. )      
## [doc1744] lenburg - Strelitz , |queen| of George III of Gre
## [doc1751] e of Great Britain , |queen| of Frederick V of De
## [doc1751] , British princess , |queen| consort of Denmark (
## [doc1757] orothea of Hanover , |queen| consort of Frederick
## [doc1761] r – Tarabai , Indian |queen| regent of Maratha Em
## [doc1766]  Elisabeth Farnese , |queen| of Philip V of Spain
## [doc1768] oline of Brunswick , |queen| of George IV of Unit
## [doc1768] oline of Brunswick , |queen| of George IV of Unit
## [doc1774]  Netherlands , Dutch |queen| consort ( from to ) 
## [doc1774]  Netherlands , Dutch |queen| consort ( from to ) 
## [doc1775] , British princess , |queen| consort of Denmark (
## [doc1775] , British princess , |queen| consort of Denmark (
## [doc1778] r Chennamma , Indian |queen| regnant ( d. ) Octob
## [doc1792] f Saxe - Meiningen , |queen| of William IV of Uni
## [doc1793] Antoinette , widowed |queen| consort of Louis XVI
## [doc1795] na of Russia , Dutch |queen| ( d . ) January – Po
## [doc1796] lu Nachiyar , Indian |queen| of Sivaganga estate 
## [doc1796] ie of Augustenburg , |queen| consort of Denmark (
## [doc1796] lu Nachiyar , Indian |queen| of Sivaganga estate 
## [doc1797] fenbüttel - Bevern , |queen| consort of Prussia (
## [doc1801] udovika of Bavaria , |queen| of Prussia ( d. ) De
## [doc1805] y of Betsimisaraka , |queen| regnant ( b. )      
## [doc1807] n Dadiani , Georgian |queen| consort ( b. ) Pierr
## [doc1814] arolina of Austria , |queen| of Ferdinand I of Tw
## [doc1818] lenburg - Strelitz , |queen| of George III of Uni
## [doc1818]  Württemberg , Dutch |queen| ( d. ) Charles Gouno
## [doc1818]  Württemberg , Dutch |queen| ( d. ) Charles Gouno
## [doc1828]  – Rani Lakshmibai , |queen| of Maratha -ruled pr
## [doc1829] r Chennamma , Indian |queen| regnant ( b. )      
## [doc1832]  June – Ka<U+02BB>ahumanu , |queen| consort of Hawaii ( 
## [doc1837] een Cheorin , Korean |queen| ( d. ) April – Georg
## [doc1838]  Liliuokalani , last |Queen| of Hawaii ( d. ) Bha
## [doc1838]  Liliuokalani , last |Queen| of Hawaii ( d. ) Sep
## [doc1849] f Saxe - Meiningen , |queen| of William IV of Uni
## [doc1854] e - Hildburghausen , |queen| consort of Bavaria (
## [doc1858] i of Jhansi , Indian |queen| of Jhansi and indepe
## [doc1858] ristina of Austria , |queen| consort of Spain , s
## [doc1865] Pavlovna of Russia , |queen| consort of Netherlan
## [doc1875] of Oldenburg , Greek |queen| ( b. )              
## [doc1877] hie of Württemberg , |queen| consort of Netherlan
## [doc1877] hie of Württemberg , |queen| consort of Netherlan
## [doc1878] een Cheorin , Korean |queen| consort ( b. )      
## [doc1878] een Cheorin , Korean |queen| consort ( b. )      
## [doc1889] herita , named after |queen| consort of Italy Mar
## [doc1893]  Hawaii , to prevent |queen| from abrogating Bayo
## [doc1893]  Hawaii , to prevent |queen| from abrogating Bayo
## [doc1898]  , German princess , |queen| consort of Christian
## [doc1898] consort of Austria , |queen| consort of Hungary (
## [doc1899] eni Mdluli serves as |queen| regent .            
## [doc1899] eni Mdluli serves as |queen| regent .            
## [doc1899]  , Afghan feminist , |queen| ( d. ) November Mona
## [doc1900]   The Queen Mother , |queen| consort of George VI
## [doc1900]   The Queen Mother , |queen| consort of George VI
## [doc1903] raga Mašin , Serbian |queen| consort ( b. )      
## [doc1903] raga Mašin , Serbian |queen| consort ( b. )      
## [doc1904] Barni Svastivatana , |queen| consort of King Praj
## [doc1906] sé of Belgium , last |Queen| of Italy ( d. ) [ ] 
## [doc1907] r – Carola of Vasa , |queen| consort of Saxony ( 
## [doc1911] r Kurshiah , Malayan |queen| ( d. ) May Lisa Fons
## [doc1916] glish - born Belgian |queen| consort of Leopold I
## [doc1917] apapa III , Tahitian |queen| ( b. )              
## [doc1921] waa , Asante warrior |queen| ( b. c. )           
## [doc1923] arma , French - born |queen| consort ( d. ) Al Qu
## [doc1923] arma , French - born |queen| consort ( d. ) Al Qu
## [doc1928] of Belgium , Spanish |Queen| Consort of King Baud
## [doc1929] bint Abdul - Hamid , |queen| consort of Jordan 19
## [doc1931] airangikaahu , Maori |queen| ( d . ) Arata Isozak
## [doc1935] er , American beauty |queen| and actress [ ]     
## [doc1937] ammar , British drag |queen| ( d. )              
## [doc1937] ammar , British drag |queen| ( d. )              
## [doc1944] s , model and beauty |queen| , winner of Miss Uni
## [doc1948] ceed her mother , as |queen| regnant of Netherlan
## [doc1948]  Alia Al - Hussein , |queen| consort of Jordan ( 
## [doc1950]  Eyiaba I , Ghanaian |queen| mother and advocate 
## [doc1950]  Eyiaba I , Ghanaian |queen| mother and advocate 
## [doc1951] by , American - born |queen| consort Jimi Jamison
## [doc1951] n , model and beauty |queen| March – Susan Musgra
## [doc1951] by , American - born |queen| consort August – Ors
## [doc1951]          The African |Queen| , starring Humphrey 
## [doc1953] zabeth II is crowned |Queen| of United Kingdom an
## [doc1955]  , comedian and drag |queen| ( d. ) [ ] Tito Roja
## [doc1955]  , comedian and drag |queen| ( d. ) [ ] June Istv
## [doc1960] Paul , American drag |queen| and entertainer Nove
## [doc1960] Paul , American drag |queen| and entertainer Jona
## [doc1961] en , American beauty |queen| , actress and model 
## [doc1963]  Lily , Spanish drag |queen| , writer , actor , a
## [doc1963] ms , American beauty |queen| , actress and singer
## [doc1963]  Lily , Spanish drag |queen| , writer , actor , a
## [doc1964] s Europe 's youngest |Queen| at age years , days 
## [doc1968] ion model and beauty |queen| Niamh Kavanagh , Iri
## [doc1970] g actress and beauty |queen| Athol Williams , Sou
## [doc1972] n of Denmark , first |Queen| of Denmark since and
## [doc1973] hka , Ukrainian Drag |queen| , comedian and singe
## [doc1973] hka , Ukrainian Drag |queen| , comedian and singe
## [doc1974] ipino model , beauty |queen| and actress Andrea D
## [doc1976]  , Venezuelan beauty |queen| , Miss Universe Dece
## [doc1978] n actress and beauty |queen| Matthew Lloyd , Aust
## [doc1979] chin , American drag |queen| Mohamed Kader , Togo
## [doc2019] eremony , making her |queen| consort of Thailand 
## [doc2019] eremony , making her |queen| consort of Thailand
docs %>%
  filter(doc_id %in% get) %>%
  group_by(decade) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = decade, y = num)) +
  geom_col(fill = "yellow") +
  labs(title = "Queen", subtitles = "Number of Wikipedia Pages of Years That Mention Queen For Each Decade", x = "Decade", y = "Number of Years")

get <- dsst_kwic(anno, terms = "queen", n = 2000000000000) %>%
  substr(2,8)
## [doc0001] d. ) Amanishakheto , |queen| of Kush ( Nubia )   
## [doc0028] nice , Jewish client |queen| of Judea Silius Ital
## [doc0051] y with Cartimandua , |queen| of Brigantes in nort
## [doc0052] nasty Julia Iotapa , |queen| of Commagene ( appro
## [doc0054] x-wife Cartimandua , |queen| of Brigantes and a R
## [doc0055] haena , Roman client |queen| ( b. )              
## [doc0060]  ) Boudica , British |queen| of Iceni tribe ( app
## [doc0061]    Boudica , British |queen| of Iceni tribe ( app
## [doc0240] ate date ) Zenobia , |queen| of Palmyrene Empire 
## [doc0248] ngi Wao ) , Japanese |queen| ( b. ) Trieu        
## [doc0274] ) Septimia Zenobia , |queen| of Palmyrene Empire 
## [doc0275] an Kingdom Zenobia , |queen| of Palmyrene Empire 
## [doc0369] harantzem , Armenian |queen| and regent ( approxi
## [doc0370] harantzem , Armenian |queen| and regent ( approxi
## [doc0390] itician Chen Guinü , |queen| consort of Jin Xiaow
## [doc0425] via , Arab warrior - |queen| Sulpicius Severus , 
## [doc0438]             Basina , |queen| of Thuringia ( appro
## [doc0439]     Eudocia , Vandal |queen| and daughter of Vale
## [doc0471] m ) Eudocia , Vandal |queen| and daughter of Vale
## [doc0477] r militum ) Basina , |queen| of Thuringia ( Germa
## [doc0499]             Ingund , |queen| of Franks ( approxim
## [doc0500] ate date ) Aregund , |queen| of Franks ( approxim
## [doc0501] delinda , Burgundian |queen| consort             
## [doc0518]         Matasuntha , |queen| of Ostrogoths ( appr
## [doc0531]  Clotilde , Visigoth |queen| and daughter of Clov
## [doc0533] mission of Ostrogoth |queen| Amalasuntha , daught
## [doc0536] suntha ( daughter of |queen| Amalasuntha ) .     
## [doc0540] lswintha , Neustrian |queen| , married to Chilper
## [doc0543]          Brunhilda , |queen| of Austrasia ( appro
## [doc0561]  of Franks Aregund , |queen| of Franks Chram , Fr
## [doc0568]         Galswintha , |queen| consort of Neustria 
## [doc0570] ( d. ) Theodelinda , |queen| of Lombards ( d. ) J
## [doc0580]  slandering Frankish |queen| Fredegund ( approxim
## [doc0583] eeds Kan B'alam I as |queen| of Maya city of Pale
## [doc0584] r sister Brunhilda , |queen| mother of Austrasia 
## [doc0590]  Sichilde , Frankish |queen| ( d. ) Theodore Rsht
## [doc0591] lulf marries widowed |queen| Theodelinda and is b
## [doc0591]  date ) Gundeberga , |queen| of Lombards Li Xiaog
## [doc0597]          Fredegund , |queen| and regent of Neustr
## [doc0598] omentrude , Frankish |queen| consort ( fl. )     
## [doc0601] - born Anglo - Saxon |queen| consort , canonized 
## [doc0610]  Nanthild , Frankish |queen| ( approximate date )
## [doc0612] j Ne ' Yohl Mat , as |queen| of Maya state of Pal
## [doc0613]          Brunhilda , |queen| of Austrasia Priscus
## [doc0617]  Lady K’awiil Ajaw , |queen| regnant of Maya city
## [doc0626]    April – Eanflæd , |queen| of Northumbria Balth
## [doc0627]  Sichilde , Frankish |queen| King Stephen I of Ib
## [doc0628] reland Theodelinda , |queen| of Lombards Tong Yab
## [doc0631]         Borandukht , |queen| of Persian Empire Ci
## [doc0632]  Seondeok is crowned |queen| of Silla ( Korea ) .
## [doc0633]  Burgundy Jamadevi , |queen| of Hariphunchai ( Th
## [doc0639] brothers and widowed |queen| Nanthild ( regent on
## [doc0640] ember – Sak K'uk ' , |queen| of Palenque [ ]     
## [doc0641] egent ( alongside of |queen| mother Nanthild ) of
## [doc0642]  Nanthild , Frankish |queen| Pulakeshin II , king
## [doc0642] Emma , Anglo - Saxon |queen| Eowa , king of Merci
## [doc0647]  Æthelburh of Kent , |queen| of Northumbria Felix
## [doc0647]           Seondeok , |queen| of Silla ( Korea ) [
## [doc0647]      Jindeok becomes |queen| of Korean kingdom of
## [doc0654] ) Jindeok of Silla , |queen| of Silla [ ]        
## [doc0661]  III of Neustria and |queen| regent Balthild foun
## [doc0673]          Æthelburg , |queen| of Wessex ( approxim
## [doc0674] Æthelthryth , former |queen| of Northumbria , giv
## [doc0674]           Seaxburh , |queen| of Wessex ( approxim
## [doc0675] Bilichild , Frankish |queen| Childeric II , king 
## [doc0679] June – Æthelthryth , |queen| of Northumbria Octob
## [doc0680] January – Balthild , |queen| of Franks October – 
## [doc0681]  Queen Jaui , Korean |queen| consort Queen Munmye
## [doc0682]  Lady K’awiil Ajaw , |queen| regnant of Maya city
## [doc0686] ate date ) Eanflæd , |queen| of Northumbria ( app
## [doc0692] rothildis , Frankish |queen| regent output { font
## [doc0697]  Neustria Osthryth , |queen| of Mercia ( English 
## [doc0699] ss Seaxburh of Ely , |queen| of Kent Werburgh , A
## [doc0718]               Former |queen| Cuthburh of Northumb
## [doc0721] jority , becomes new |queen| of Mayan city state 
## [doc0740] abasdos Frithugyth , |queen| of Wessex Gregory , 
## [doc0740]  general Æthelburg , |queen| of Wessex Æthelheard
## [doc0741]           Sky , Maya |queen| of Naranjo March – H
## [doc0741] w ( Lady Six Sky ) , |queen| of Mayan city state 
## [doc0754] f Vinzgau , Frankish |queen| and wife of Charlema
## [doc0762] thumbria marries his |queen| , Æthelthryth , at C
## [doc0765]  Fastrada , Frankish |queen| consort ( d. ) Han H
## [doc0778] engarde of Hesbaye , |queen| of Franks ( d. ) Ish
## [doc0780]         Himiltrude , |queen| consort of Charlemag
## [doc0783]  April – Hildegard , |queen| consort of Charlemag
## [doc0783]  , and makes her his |queen| at Worms .          
## [doc0783] – Bertrada of Laon , |queen| consort of Pepin Sho
## [doc0794]  Fastrada , Frankish |queen| consort ( b. )      
## [doc0795] f Bavaria , Frankish |queen| ( or 797/805 )      
## [doc0800]  Luitgard , Frankish |queen| and wife of Charlema
## [doc0803] f Altdorf , Frankish |queen| and wife of King Lou
## [doc0808] f Altdorf , Frankish |queen| ( or )              
## [doc0818] tober – Ermengarde , |queen| of Franks [ ]       
## [doc0823] entrude of Orléans , |queen| of Franks ( d. ) Muh
## [doc0826]  Burgundy , Frankish |queen| ( approximate date )
## [doc0834] - Minded , Icelandic |queen| Euthymius I , Ecumen
## [doc0838] with , Anglo - Saxon |queen| ( approximate date )
## [doc0843] Judith of Flanders , |queen| of Wessex and counte
## [doc0845] of Saxony , Frankish |queen| ( approximate date )
## [doc0850] an ( d. ) Adelaide , |queen| of West Frankish Kin
## [doc0852] Ermengard of Italy , |queen| regent of Provence (
## [doc0853] im ( d. ) Adelaide , |queen| of West Frankish Kin
## [doc0854] mate date ) Osburh , |queen| of Wessex ( approxim
## [doc0856]       She is crowned |queen| and anointed by Hinc
## [doc0860] Bertila of Spoleto , |queen| of Italy ( approxima
## [doc0865] te date ) Jinseong , |queen| of Silla ( approxima
## [doc0868] of Troyes , Frankish |queen| ( d. ) Xu Jie , Chin
## [doc0869] entrude of Orléans , |queen| of Franks ( b. ) Gun
## [doc0870]  Teutberga , widow - |queen| of Lothair II . [ ] 
## [doc0874]  d. ) Ota , Frankish |queen| and Holy Roman Empre
## [doc0875] vember – Teutberga , |queen| of Lotharingia ' Abd
## [doc0876] cellor ( d. ) Toda , |queen| of Pamplona ( d. ) J
## [doc0880] ermandois , Frankish |queen| ( approximate date )
## [doc0880]  Burgundy , Frankish |queen| ( or )              
## [doc0882]  Burgundy , Frankish |queen| ( or )              
## [doc0885] of Saxony , Frankish |queen| Chen Ru , Chinese wa
## [doc0887] ch . [ ] Frederuna , |queen| of West Frankish Kin
## [doc0888] with , Anglo - Saxon |queen| Al - Mundhir , Musli
## [doc0894] ximate date ) Emma , |queen| of West Frankish Kin
## [doc0894] ilda of Ringelheim , |queen| of Germany ( approxi
## [doc0897] Ermengard of Italy , |queen| and regent of Proven
## [doc0897] of London Jinseong , |queen| of Silla ( Korea )  
## [doc0901] ovember – Adelaide , |queen| of West Frankish Kin
## [doc0902] ate date ) Eadgifu , |queen| and wife of Charles 
## [doc0902] cember – Ealhswith , |queen| and wife of Alfred G
## [doc0903] of Troyes , Frankish |queen| ( b. )              
## [doc0907] of Swabia , Frankish |queen| ( approximate date )
## [doc0910] d , Norwegian Viking |queen| ( approximate date )
## [doc0910] - Saxon princess and |queen| of Germany ( d. ) Fe
## [doc0911] ) Willa of Tuscany , |queen| consort of Italy ( o
## [doc0912] ) Willa of Tuscany , |queen| consort of Italy ( o
## [doc0913]  Gerberga , Frankish |queen| and regent ( approxi
## [doc0915] Bertila of Spoleto , |queen| of Italy Cutheard , 
## [doc0916] r ingen Cearbhaill , |queen| of Laigin Tighearnac
## [doc0916] ( Wales ) , and take |queen| and - others captive
## [doc0917] runa , West Frankish |queen| ( b. )              
## [doc0921] al Elvira Menéndez , |queen| of Galicia and León 
## [doc0923] August – Ageltrude , |queen| of Italy and Holy Ro
## [doc0931] ermandois , Frankish |queen| Gausbert , count of 
## [doc0934] er November – Emma , |queen| of West Frankish Kin
## [doc0936] e ) Zhou ( Elder ) , |queen| consort of Southern 
## [doc0936] di Mahadevi , Indian |queen| regnant             
## [doc0940] he of Anjou , French |queen| and regent ( d . ) A
## [doc0941] gen Cennétig , Irish |queen| Qian Yuanguan , king
## [doc0943]            Matilda , |queen| consort of Burgundy 
## [doc0945] f Aquitaine , French |queen| consort ( or ) Al - 
## [doc0946]  January – Eadgyth , |queen| consort of Germany (
## [doc0948] d. ) Emma of Italy , |queen| of West Frankish Kin
## [doc0948]  Flann Sinna , Irish |queen| Ibrahim ibn Simjur ,
## [doc0952] f Aquitaine , French |queen| consort ( or )      
## [doc0958] . ) October – Toda , |queen| of Pamplona ( b. ) d
## [doc0960] gen Murchada , Irish |queen| ( d. ) Gotthard , bi
## [doc0961] te ) Mahendradatta , |queen| of Bali ( Indonesia 
## [doc0964]  ( Elder ) , Chinese |queen| consort Al - Hasan i
## [doc0964]  Burgundy , Frankish |queen| consort ( d. ) Heona
## [doc0966] of Swabia , Frankish |queen| consort Cormac ua Ci
## [doc0966]          Heonjeong , |queen| of Goryeo ( Korea ) 
## [doc0968] ingelheim , Frankish |queen| March – Emma of Pari
## [doc0969] ngary , princess and |queen| of Poland ( d. ) Liu
## [doc0970] ) Willa of Tuscany , |queen| consort of Italy    
## [doc0976] r – Helen of Zadar , |queen| of Croatia October –
## [doc0976] d emir Sun Taizhen , |queen| of Wuyue ( Ten Kingd
## [doc0978]  Elvira of Castile , |queen| consort of León ( ap
## [doc0979] trid ( or Astrid ) , |queen| consort of Sweden ( 
## [doc0980] d , Norwegian Viking |queen| ( approximate date )
## [doc0982] November – Matilda , |queen| of Burgundy ( or ) A
## [doc0984]  Gerberga , Frankish |queen| ( approximate date )
## [doc0984] mandy , noblewoman , |queen| consort of England (
## [doc0985] ela ( or Gizella ) , |queen| of Hungary ( d .    
## [doc0986] ce of Arles , French |queen| ( approximate date )
## [doc0988]  Judith of Hungary , |queen| of Poland ( approxim
## [doc0992]          Heonjeong , |queen| of Goryeo ( Korea ) 
## [doc0996]  ) Elvira Menéndez , |queen| consort of León ( ap
## [doc0996]     Oda of Meissen , |queen| consort of Poland ( 
## [doc0997] ire Teresa Ansúrez , |queen| and regent of León M
## [doc1000]  Ælfthryth , English |queen| and wife of Edgar I 
## [doc1000] an Tyra of Denmark , |queen| consort of Norway Uk
## [doc1003] pt ) Rozala , French |queen| and countess of Flan
## [doc1003]              Didda , |queen| consort and regent o
## [doc1003] of Arles who becomes |queen| consort of France . 
## [doc1004] f Aquitaine , French |queen| consort Aderald , Fr
## [doc1007] Fernández , Galician |queen|
## [doc1011] te ) Mahendradatta , |queen| of Bali ( b. ) Muham
## [doc1013] za ( or Adelaide ) , |queen| of Hungary ( d . ) A
## [doc1015] mesinda of Bigorre , |queen| of Aragon ( d. ) Eus
## [doc1017]  Elvira of Castile , |queen| consort of León Emni
## [doc1020]  of Denmark , German |queen| ( approximate date )
## [doc1022]  – Elvira Menéndez , |queen| of León Al - Shaykh 
## [doc1025]  of Wessex , English |queen| ( approximate date )
## [doc1025] r , Norwegian Viking |queen| William VIII , Frenc
## [doc1026] he of Anjou , French |queen| and regent Frederick
## [doc1029] ry – Heonae , Korean |queen| consort and regent (
## [doc1030] nne of Kiev , French |queen| and regent ( approxi
## [doc1030] gen Murchada , Irish |queen| ( b. )              
## [doc1031] atilda of Flanders , |queen| consort of England (
## [doc1032] ce of Arles , French |queen| July – Matilda of Sw
## [doc1035] Astrid Olofsdotter , |queen| consort of Norway ( 
## [doc1038]  of Denmark , German |queen| August – Stephen I ,
## [doc1045]  Probable Margaret , |queen| of Scotland ( d. ) [
## [doc1046]    May – Constance , |queen| of Castile and León 
## [doc1048]  Arwa al - Sulayhi , |queen| and co-ruler of Yeme
## [doc1049] mesinda of Bigorre , |queen| of Aragon ( b. ) Air
## [doc1052] – Emma of Normandy , |queen| consort of England (
## [doc1054] cht ingen Ragnaill , |queen| consort of Munster N
## [doc1054] ) Judith of Swabia , |queen| consort of Hungary (
## [doc1055]  of Holland , French |queen| consort ( d. ) Fujiw
## [doc1058]           Synadene , |queen| consort of Hungary (
## [doc1060] ] Felicia of Roucy , |queen| of Aragon and Navarr
## [doc1063] eza of Lotharingia , |queen| of Poland April – Re
## [doc1064]  Adela of Flanders , |queen| of Denmark ( approxi
## [doc1065] ela ( or Gizella ) , |queen| consort of Hungary (
## [doc1067]  of Kiev , Norwegian |queen| Eric and Eric , Swed
## [doc1067] r – Sancha of León , |queen| of León December –  
## [doc1068]       She is crowned |queen| in Westminster Abbey
## [doc1068] ds , and becomes his |queen| and co-regent .     
## [doc1070] rtrade de Montfort , |queen| of France ( d. ) But
## [doc1071] Isabella of Urgell , |queen| consort of Aragon Ro
## [doc1071] ds , and becomes his |queen| and co-regent .     
## [doc1072] Agnes of Aquitaine , |queen| of Aragon and Navarr
## [doc1073]  ) Lady Six Monkey , |queen| regnant of Mixtec ci
## [doc1074] d poet ( d. ) Maud , |queen| of Scotland ( approx
## [doc1075] cily ( d. ) Bertha , |queen| of Aragon and Navarr
## [doc1075] elaide ) , Hungarian |queen| June – Gebhard of Su
## [doc1075]  of Wessex , English |queen| Ali ibn Ahmad al - N
## [doc1076] ) Hualani , Hawaiian |queen| and regent ( approxi
## [doc1079]          Constance , |queen| of Castile and León 
## [doc1079]     April – Urraca , |queen| regnant of León , Ca
## [doc1080]           Portuguese |queen| and regent ( d. ) Wa
## [doc1080] atilda of Scotland , |queen| of England ( d. ) [ 
## [doc1083] atilda of Flanders , |queen| of England December 
## [doc1087]   Asma bint Shihab , |queen| and co-regent of Yem
## [doc1088] gh ingen Áed , Irish |queen| of Munster Hugh de M
## [doc1090] ide of Rheinfelden , |queen| consort of Hungary [
## [doc1091]  Helena of Hungary , |queen| of Croatia ( approxi
## [doc1092] laide de Maurienne , |queen| of France ( d. ) Al 
## [doc1092] ybilla of Normandy , |queen| of Scotland ( d.    
## [doc1093]          Constance , |queen| of Castile and León 
## [doc1093] ovember – Margaret , |queen| of Scotland ( b. ) [
## [doc1094]  of Holland , French |queen| Fujiwara no Nobunaga
## [doc1094]  of Holland , French |queen| Fujiwara no Nobunaga
## [doc1095] kansdotter , Swedish |queen| ( d. ) Victor IV ( O
## [doc1097] Agnes of Aquitaine , |queen| of Aragon and Navarr
## [doc1100]  Elvira of Castile , |queen| of Sicily ( approxim
## [doc1100]  ) Lady Six Monkey , |queen| regnant of Mixtec ci
## [doc1102]  Felicia of Sicily , |queen| of Hungary ( approxi
## [doc1103]  or Bodil ) , Danish |queen| Ebles II , French no
## [doc1103] in ( or Adelicia ) , |queen| of England ( d. ) Aé
## [doc1105] atilda of Boulogne , |queen| of England ( d. ) Ma
## [doc1109] er – Gongye , Korean |queen| ( d. ) October – Inj
## [doc1109] raca of León becomes |queen| of León , Castile an
## [doc1110] of Sulzbach , German |queen| ( approximate date )
## [doc1115]  Adela of Flanders , |queen| of Denmark ( b.     
## [doc1116]  Richeza of Poland , |queen| of Sweden ( d. ) Aug
## [doc1116] garia of Barcelona , |queen| of León and Castile 
## [doc1117] de Montfort , French |queen| ( b. ) April –      
## [doc1118] ristina of Denmark , |queen| of Norway ( approxim
## [doc1118] ) Jaquinta of Bari , |queen| of Duklja Lidanus , 
## [doc1118] atilda of Scotland , |queen| of England ( b. c.10
## [doc1120]           Ingegerd , |queen| of Denmark and Swede
## [doc1122] eanor of Aquitaine , |queen| of France and Englan
## [doc1122] ybilla of Normandy , |queen| of Scotland Wang Jha
## [doc1122] eanor of Aquitaine , |queen| of France and Englan
## [doc1122] ybilla of Normandy , |queen| of Scotland Wang Jha
## [doc1123] – Felicia of Roucy , |queen| of Aragon and Navarr
## [doc1124] chess of Aquitaine , |queen| consort successively
## [doc1125] ) Matilda of Savoy , |queen| consort of Portugal 
## [doc1125] ) Matilda of Savoy , |queen| consort of Portugal 
## [doc1126] etoslawa of Poland , |queen| of Bohemia October –
## [doc1126] ibylla of Burgundy , |queen| of Sicily ( d. ) Svi
## [doc1126]     March – Urraca , |queen| regnant of León and 
## [doc1127] orphia of Melitene , |queen| of Jerusalem ( or ) 
## [doc1131] aud ( or Matilda ) , |queen| of Scotland Meng , C
## [doc1133]  Urraca of Castile , |queen| of Navarre ( d. ) Zh
## [doc1135] argaret of Navarre , |queen| of Sicily ( approxim
## [doc1138]  Arwa al - Sulayhi , |queen| and co-ruler of Yeme
## [doc1140]  ) Sophia of Minsk , |queen| of Denmark ( d. )   
## [doc1140] Adela of Champagne , |queen| of France ( d . ) Al
## [doc1144]  . ) Maria Komnene , |queen| of Hungary and Croat
## [doc1145] ) Theodora Komnene , |queen| of Jerusalem ( appro
## [doc1145]  ) Christina Hvide , |queen| of Sweden ( approxim
## [doc1146] of Sulzbach , German |queen| ( b. )              
## [doc1148] Urraca of Portugal , |queen| consort of León ( d.
## [doc1149] garia of Barcelona , |queen| of Castile ( b. )   
## [doc1150] ibylla of Burgundy , |queen| of Sicily ( b. )    
## [doc1150] . ) Umadevi , Indian |queen| and general ( d. ) W
## [doc1151] Adeliza of Louvain , |queen| of Henry I of Englan
## [doc1152] atilda of Boulogne , |queen| of England June –   
## [doc1153]  Sibylla of Acerra , |queen| and regent of Sicily
## [doc1154] ) Agnes of Austria , |queen| of Hungary ( d. ) Be
## [doc1154] f Maurienne , French |queen| ( b.                
## [doc1154] mber – Constance I , |queen| of Sicily ( d. )    
## [doc1156]  Blanca of Navarre , |queen| of Castile November 
## [doc1157] Henry Young King and |queen| of Hungary and Croat
## [doc1158] , as future wife and |queen| .                   
## [doc1160]  ) Dulce of Aragon , |queen| of Portugal ( d. ) E
## [doc1160] nstance of Castile , |queen| of France ( b. )    
## [doc1161] Eleanor of England , |queen| of Castile ( d. ) Gu
## [doc1161] tember – Melisende , |queen| of Jerusalem ( b. ) 
## [doc1162] gharad ferch Owain , |queen| of Gwynedd ( b. )   
## [doc1165]  ) Joan of England , |queen| of Sicily ( d. ) Phi
## [doc1166] ( d. ) Tamar Great , |queen| of Georgia ( d. ) Wa
## [doc1170] stina Björnsdotter , |queen| of Sweden ( b. )    
## [doc1170] ngarde de Beaumont , |queen| of Scotland ( d. ) E
## [doc1170] abella of Hainault , |queen| of France ( d. ) May
## [doc1172]  ( d. ) Isabella I , |queen| and regent of Jerusa
## [doc1173] tober – Petronilla , |queen| of Aragon ( b. )    
## [doc1173] 74 , in which former |Queen| Eleanor of Aquitaine
## [doc1174] ngeborg of Denmark , |queen| of France ( d. ) Liu
## [doc1176] heresa of Portugal , |queen| of León ( d. ) Willi
## [doc1179] astile ( Alfonso ) , |queen| of Navarre ( b. )   
## [doc1180] rengaria ( Great ) , |queen| of Castile and León 
## [doc1180] Fernández de Traba , |queen| of León March – Al -
## [doc1181]     Irene Angelina , |queen| of Germany and Sicil
## [doc1181]   Adela of Meissen , |queen| consort of Denmark N
## [doc1182] ria of Montpellier , |queen| consort of Aragon ( 
## [doc1183] ueen Gongye , Korean |queen| consort ( b. ) [ ] [
## [doc1184]   Agnes of Antioch , |queen| of Hungary ( approxi
## [doc1185]  Richeza of Poland , |queen| of Castile ( b. )   
## [doc1185] ertrude of Merania , |queen| of Hungary ( d. ) In
## [doc1186] rced possible future |Queen| into promising shoul
## [doc1186] . ) [ ] date unknown |Queen| Urraca of Portugal ,
## [doc1188] Blanche of Castile , |queen| and regent of France
## [doc1190] lla ( or Sibylle ) , |queen| of Jerusalem ( b. ) 
## [doc1190] er Joan of England , |queen| of Sicily , who is h
## [doc1190]      Maria Komnene , |queen| of Hungary and Croat
## [doc1191]  ) Mór Ní Tuathail , |queen| of Leinster ( approx
## [doc1193] Alice of Champagne , |queen| of Cyprus ( d. ) Alt
## [doc1194] ate date ) Rusudan , |queen| of Georgia ( House o
## [doc1196]  Eschiva of Ibelin , |queen| consort of Cyprus ( 
## [doc1197] ertrude of Bavaria , |queen| consort of Denmark J
## [doc1198] n ( or Barcelona ) , |queen| of Portugal ( b. )  
## [doc1198]        Constance I , |queen| regent of Sicily ( b
## [doc1198]        Constance I , |queen| regent of Sicily ( b
## [doc1198] ybilla of Lusignan , |queen| of Lesser Armenia ( 
## [doc1199] besdotter of Hvide , |queen| of Sweden ( or )    
## [doc1199]    Joan of England , |queen| of Sicily ( b. ) [ ]
## [doc1200] besdotter of Hvide , |queen| of Sweden ( or )    
## [doc1201] – Agnes of Merania , |queen| consort of King Phil
## [doc1202] de of Hohenstaufen , |queen| of Bohemia ( d. ) Ma
## [doc1202]     II of Boulogne , |queen| consort of Portugal 
## [doc1204] gnant of Aquitaine , |queen| of France and Englan
## [doc1205]         Isabella I , |queen| and regent of Jerusa
## [doc1205] lisabeth of Swabia , |queen| of Castile and León 
## [doc1205]  Sibylla of Acerra , |queen| and regent of Sicily
## [doc1206]    Maria Laskarina , |queen| consort of Hungary (
## [doc1206]    Maria Laskarina , |queen| consort of Hungary (
## [doc1206] Adela of Champagne , |queen| of France ( b. ) unk
## [doc1208] t – Irene Angelina , |queen| of Sicily and German
## [doc1208] garet Skulesdatter , |queen| consort of Norway ( 
## [doc1208] dget Haraldsdotter , |queen| of Sweden ( approxim
## [doc1208]  Sancha of Castile , |queen| consort of Aragon De
## [doc1209] Margaret of Sweden , |queen| consort of Norway ( 
## [doc1209]    [ ] Tamar Great , |queen| of Georgia , raids E
## [doc1210] lice of Montferrat , |queen| consort of Cyprus ( 
## [doc1210]  – Joan of England , |queen| of Scotland ( d. ) [
## [doc1211] leanor of Portugal , |queen| consort of Denmark (
## [doc1211] Urraca of Portugal , |queen| consort of León ( b.
## [doc1212]  Dagmar of Bohemia , |queen| of Denmark July – Jo
## [doc1212] ( d. ) Isabella II , |queen| and regent of Jerusa
## [doc1212] aria of Montferrat , |queen| of Jerusalem ( b. ) 
## [doc1213] ertrude of Merania , |queen| consort regent of Hu
## [doc1214] Eleanor of England , |queen| of Castile ( b. )   
## [doc1215] écia Lopes de Haro , |queen| of Portugal ( d. ) O
## [doc1215] ) Beatrice d' Este , |queen| consort of Hungary (
## [doc1217]      Maria Komnene , |queen| consort of Jerusalem
## [doc1218] ght Umadevi , Indian |queen| and general ( b. ) W
## [doc1218] . ) Marie de Coucy , |queen| consort of Scotland 
## [doc1220]  Urraca of Castile , |queen| of Portugal ( b. ) A
## [doc1220] Richeza of Denmark , |queen| of Sweden ( b. )    
## [doc1221] ngaria of Portugal , |queen| of Denmark ( b. ) Ap
## [doc1221] rgaret of Provence , |queen| consort of France ( 
## [doc1222] Holy Roman Empress , |queen| consort of Hungary (
## [doc1223] leanor of Provence , |queen| of England ( d. ) [ 
## [doc1225] anchia of Provence , |queen| of Germany ( d. ) Th
## [doc1225] marries - year - old |Queen| Yolande , heiress to
## [doc1227] isabeth of Bavaria , |queen| consort of Germany (
## [doc1228] pril – Isabella II , |queen| and regent of Jerusa
## [doc1229] atrice of Provence , |queen| consort of Sicily ( 
## [doc1230] raca López de Haro , |queen| of León ( approximat
## [doc1230] engaria of Navarre , |queen| of England Al - Dakh
## [doc1230] et Sambiria , Danish |queen| consort ( d. ) Masuc
## [doc1230] f Brunswick , German |queen| consort ( d . ) Gott
## [doc1231] leanor of Portugal , |queen| of Denmark September
## [doc1233] ngarde de Beaumont , |queen| of Scotland March – 
## [doc1233] landa de Courtenay , |queen| consort of Hungary  
## [doc1235] lisabeth of Swabia , |queen| consort of Castile a
## [doc1236]  Violant of Aragon , |queen| consort of Castile (
## [doc1236] ngeborg of Denmark , |queen| of France ( b. ) Aug
## [doc1236]   Eleanor is crowned |queen| at Westminster Abbey
## [doc1237] ngeborg of Denmark , |queen| of France ( b. )    
## [doc1238]    Joan of England , |queen| consort of Scotland 
## [doc1238] ch Joan of England , |queen| consort of Scotland 
## [doc1240] ptember – Margaret , |queen| of Scotland ( d. ) A
## [doc1240] cember – Constance , |queen| of Bohemia ( b. )   
## [doc1241] Eleanor of Castile , |queen| of Edward I of Engla
## [doc1242] r – Narchat , Moksha |queen| ( b. ) December – Al
## [doc1242] eatrice of Castile , |queen| consort of Portugal 
## [doc1243] with help of Alice , |queen| of Cyprus , whose fo
## [doc1244] Eleanor of Castile , |queen| consort of Aragon ( 
## [doc1244] geborg Eriksdotter , |queen| consort of Norway ( 
## [doc1244]  ) Elizabeth Cuman , |queen| consort of Hungary (
## [doc1245] Rusudan of Georgia , |queen| consort of Georgia (
## [doc1245] unigunda of Halych , |queen| consort of Bohemia (
## [doc1245] t Beatrice d' Este , |queen| consort of Hungary (
## [doc1246] rengaria ( Great ) , |queen| of Castile Alice of 
## [doc1246] bella of Angoulême , |queen| consort of England J
## [doc1246] Alice of Champagne , |queen| and regent of Jerusa
## [doc1248]  Blanche of Artois , |queen| and regent of Navarr
## [doc1248] Kunigunde , Bohemian |queen| consort ( b. ) Decem
## [doc1248] Isabella of Aragon , |queen| consort of France ( 
## [doc1249]       II of Sicily , |queen| consort of Aragon ( 
## [doc1250] rgaret of Burgundy , |queen| of Sicily ( d. )    
## [doc1250] heresa of Portugal , |queen| of León ( b. ) Augus
## [doc1250] claramunda of Foix , |queen| of Majorca ( d. ) Fr
## [doc1252] Blanche of Castile , |queen| of Louis VIII of Fra
## [doc1252] unesdotter , Swedish |queen| consort [ citation n
## [doc1252] unesdotter , Swedish |queen| consort [ citation n
## [doc1253]  crowned as king and |queen| of Lithuania , rulin
## [doc1254] – Marie of Brabant , |queen| of France ( d. ) Jun
## [doc1255] dersdatter Strange , |queen| of Sweden ( b. )    
## [doc1256] argaret of Bourbon , |queen| of Navarre ( b. ) Ap
## [doc1257] nes of Brandenburg , |queen| of Denmark ( d . )  
## [doc1259]  ruler of Boulogne , |queen| consort of Portugal 
## [doc1261] lizabeth of Sicily , |queen| of Hungary ( House o
## [doc1261] of Provence , German |queen| ( b. )              
## [doc1261] rgaret of Scotland , |queen| of Norway ( d. ) Mar
## [doc1261] aisance of Antioch , |queen| consort of Cyprus ( 
## [doc1262] nthia ( or Tyrol ) , |queen| of Germany ( d. )   
## [doc1263] – Yolande of Dreux , |queen| of Scotland ( d. ) H
## [doc1266] argaret of Austria , |queen| of Germany ( b. )   
## [doc1266]  Jadwiga of Kalisz , |queen| consort of Poland ( 
## [doc1266] f Brunswick , German |queen| ( b. )              
## [doc1271] Isabella of Aragon , |queen| of France ( b. ) Feb
## [doc1271] lizabeth of Aragon , |queen| of Portugal ( d. ) G
## [doc1271] Isabella of France , |queen| of Navarre ( b. )   
## [doc1271] Judith of Habsburg , |queen| of Bohemia ( d. ) Ma
## [doc1272]  d. ) Isabel Bruce , |queen| consort of Norway ( 
## [doc1273] isabeth of Bavaria , |queen| of Germany ( b. ) Oc
## [doc1273]  Joan I of Navarre , |queen| of Navarre ( d. ) [ 
## [doc1275] argaret of England , |queen| of Scotland ( b. )  
## [doc1276] rgaret of Lusignan , |queen| of Cilician Armenia 
## [doc1276] argaret of Brabant , |queen| of Germany ( d. ) Oc
## [doc1277]  Falkenburg , German |queen| October – Mastino I 
## [doc1277] eborg Magnusdotter , |queen| of Denmark ( d. ) Is
## [doc1279]  Dammartin , Spanish |queen| consort ( b. ) [ ]  
## [doc1281] ) Agnes of Austria , |queen| of Hungary ( House o
## [doc1281]  Sancia of Majorca , |queen| and regent of Naples
## [doc1282] et Sambiria , Danish |queen| and regent ( b. ) Ro
## [doc1283] Maid of Scotland ) , |queen| of Norway ( b. ) Apr
## [doc1283] ( Maid of Norway ) , |queen| of Scotland ( d. ) A
## [doc1285] hemia of Pomerania , |queen| consort of Denmark (
## [doc1285] unigunda of Halych , |queen| of Bohemia ( b. )   
## [doc1285] – Keran of Lampron , |queen| of Cilician Armenia 
## [doc1286] rk ( Eriksdotter ) , |queen| of Sweden ( b. )    
## [doc1287] geborg Eriksdotter , |queen| consort of Norway ( 
## [doc1288] n ( or Mechthild ) , |queen| consort of Denmark S
## [doc1289] ) Eleanor of Anjou , |queen| consort of Sicily ( 
## [doc1290] ( Maid of Norway ) , |queen| of Scotland ( b. ) N
## [doc1290]  ) Elizabeth Cuman , |queen| of Hungary ( House o
## [doc1290] Eleanor of Castile , |queen| consort of England (
## [doc1290]    Anne of Bohemia , |queen| consort of Bohemia (
## [doc1290] eatrice of Silesia , |queen| of Germany ( House o
## [doc1290] stance of Portugal , |queen| consort of Castile (
## [doc1290] ( Maid of Norway ) , |queen| - designate and heir
## [doc1291] leanor of Provence , |queen| consort of England (
## [doc1292] isenda of Montcada , |queen| and regent of Aragon
## [doc1292] izabeth of Bohemia , |queen| of Bohemia ( d. ) Ja
## [doc1295] rgaret of Provence , |queen| of France ( b. ) Ann
## [doc1295] ia ( or Kujawska ) , |queen| of Hungary ( b. )   
## [doc1296] lanche of Burgundy , |queen| consort of France ( 
## [doc1296] lanche of Burgundy , |queen| consort of France ( 
## [doc1297]  Habsburg , Bohemian |queen| consort ( b. )      
## [doc1297]  Korean princess and |queen| consort ( b. )      
## [doc1298] t – Gongwon , Korean |queen| consort of Goryeo ( 
## [doc1302] onstance of Sicily , |queen| and regent of Aragon
## [doc1302]  Blanche of Artois , |queen| and regent of Navarr
## [doc1303] eatrice of Castile , |queen| consort of Portugal 
## [doc1304] Brandenburg , Danish |queen| ( b. ) December – Jo
## [doc1304] Marie of Luxemburg , |queen| of France and Navarr
## [doc1305] lizabeth of Poland , |queen| consort of Hungary a
## [doc1305] Elisabeth ) , German |queen| consort ( d. ) Khats
## [doc1305]  of Navarre , French |queen| consort and regent (
## [doc1306]  de Burgh is crowned |queen| of Scots .          
## [doc1308] rgaret of Burgundy , |queen| of Sicily ( b. )    
## [doc1308] Borjigin Jintong ) , |queen| consort of Goryeo ( 
## [doc1309] huania ( or Anna ) , |queen| consort of Poland ( 
## [doc1311]  Margaret I , German |queen| and Holy Roman Empre
## [doc1311]  Margaret I , German |queen| and Holy Roman Empre
## [doc1311]  of Brabant , German |queen| consort ( b. ) date 
## [doc1312] abeth of Carinthia , |queen| of Germany ( b. )   
## [doc1313]  Maria of Portugal , |queen| consort of Castile (
## [doc1313] Imagina of Limburg , |queen| consort of Germany (
## [doc1313] fonso 's grandmother |Queen| dowager María de Mol
## [doc1314] ilippa of Hainault , |queen| consort of Edward II
## [doc1314] y – Helen of Anjou , |queen| of Serbia ( b. ) Feb
## [doc1315] rgaret of Burgundy , |queen| consort of France ( 
## [doc1315] rgaret of Burgundy , |queen| consort of France ( 
## [doc1315] claramunda of Foix , |queen| consort of Majorca (
## [doc1315] claramunda of Foix , |queen| consort of Majorca (
## [doc1315] onne of Luxembourg , |queen| consort of France ( 
## [doc1315] ry – Gyeguk , Korean |queen| consort of Goryeo ( 
## [doc1316] ongol noblewoman and |queen| consort July –      
## [doc1317] r – Maria of Bytom , |queen| consort of Hungary a
## [doc1317]  Blanche of Valois , |queen| consort of Germany a
## [doc1317]  Blanche of Valois , |queen| consort of Germany a
## [doc1317] – Viola of Teschen , |queen| consort of Bohemia a
## [doc1318] Margaret of France , |queen| consort of England (
## [doc1318] anish noblewoman and |queen| ( d. )              
## [doc1318] Margaret of France , |queen| consort of England (
## [doc1318] anish noblewoman and |queen| ( d. )              
## [doc1319] n Grand Princess and |queen| [ ]                 
## [doc1319] rice of Luxembourg , |queen| of Hungary [ ]      
## [doc1319] eborg Magnusdotter , |queen| of Denmark ( b. )   
## [doc1319] eborg Magnusdotter , |queen| of Denmark ( b. )   
## [doc1320] zantine princess and |queen| consort Antonius And
## [doc1320] eatrice of Bourbon , |queen| consort of Bohemia (
## [doc1320] zantine princess and |queen| consort Antonius And
## [doc1320] eatrice of Bourbon , |queen| consort of Bohemia (
## [doc1321] ly – Joan of Tower , |queen| consort of Scotland 
## [doc1321]  – María de Molina , |queen| of Castile and León 
## [doc1322] – Marie of Brabant , |queen| consort of France ( 
## [doc1322] eatrice of Silesia , |queen| consort of Germany (
## [doc1323] – Constanza Manuel , |queen| consort of Castile (
## [doc1324] Hedwig of Holstein , |queen| consort of Sweden ( 
## [doc1324] Hedwig of Holstein , |queen| consort of Sweden ( 
## [doc1326]      I of Auvergne , |queen| consort of France ( 
## [doc1326] of Burgundy , former |queen| consort of France ( 
## [doc1327] Elizabeth de Burgh , |queen| of Robert Bruce [ ] 
## [doc1329]    Anne of Bavaria , |queen| consort of Bohemia (
## [doc1330] untess of Burgundy , |queen| dowager of France ( 
## [doc1330] izabeth of Bohemia , |queen| consort of Bohemia (
## [doc1331]  Blanche d' Évreux , |queen| consort of France ( 
## [doc1336] zabeth of Portugal , |queen| consort and saint ( 
## [doc1338]  Joanna of Bourbon , |queen| consort of France ( 
## [doc1339]  Manuel of Castile , |queen| consort of Castile (
## [doc1339]  Manuel of Castile , |queen| consort of Castile (
## [doc1339] ed Kota Rani , Hindu |queen| regnant of Kashmir ,
## [doc1340]           Simonida , |queen| consort of Serbia ( 
## [doc1340]  Margaret Drummond , |queen| consort of Scotland 
## [doc1341]  Martha of Denmark , |queen| consort of Sweden ( 
## [doc1341] – Eleanor of Anjou , |queen| consort of Sicily ( 
## [doc1343] onstance of Aragon , |queen| consort of Sicily ( 
## [doc1343] onstance of Aragon , |queen| consort of Sicily ( 
## [doc1344] Beatrix of Bavaria , |queen| consort of Sweden ( 
## [doc1345] of influence held by |queen| mother in pagan Lith
## [doc1345] stance of Peñafiel , |queen| of Pedro I of Portug
## [doc1345]  Sancia of Majorca , |queen| regent of Naples ( b
## [doc1347] hardis of Schwerin , |queen| consort of Sweden ( 
## [doc1349] onne of Luxembourg , |queen| of John II of France
## [doc1353] garet I of Denmark , |queen| of Haakon VI of Norw
## [doc1353]    Anne of Bavaria , |queen| consort of Bohemia (
## [doc1358] Isabella of France , |queen| of Edward II of Engl
## [doc1358]  Eleanor of Aragon , |queen| of John I of Castile
## [doc1359] eatrice of Castile , |queen| consort of Portugal 
## [doc1360]      I of Auvergne , |queen| consort of France ( 
## [doc1360] lippa of Lancaster , |queen| consort of Portugal 
## [doc1363]   Blanche of Namur , |queen| consort of Sweden ( 
## [doc1364] isenda of Montcada , |queen| consort and regent o
## [doc1365]     Violant of Bar , |queen| regent of Aragon ( d
## [doc1366]    Anne of Bohemia , |queen| of Richard II of Eng
## [doc1367]    Mary of Enghien , |queen| consort of Naples ( 
## [doc1369] ilippa of Hainault , |queen| of Edward III of Eng
## [doc1371] Isabeau de Bavière , |queen| of Charles VI of Fra
## [doc1371] – Jeanne d' Évreux , |queen| consort of France ( 
## [doc1374] ince ( d. ) probable |Queen| Jadwiga of Poland Ki
## [doc1375] t Drummond , dowager |queen| consort of Scotland 
## [doc1375] t Drummond , dowager |queen| consort of Scotland 
## [doc1376] ) Sofia of Bavaria , |queen| consort of Bohemia (
## [doc1377]  Anglesia Visconti , |queen| consort of Cyprus ( 
## [doc1377]  Anglesia Visconti , |queen| consort of Cyprus ( 
## [doc1377] hardis of Schwerin , |queen| consort of Sweden ( 
## [doc1378]  Joanna of Bourbon , |queen| consort of Charles V
## [doc1380] lizabeth of Poland , |queen| consort of Hungary (
## [doc1382]  Eleanor of Aragon , |queen| of John I of Castile
## [doc1386] dwiga , - year - old |queen| regnant of Poland ) 
## [doc1386] mother of overthrown |Queen| Mary of Hungary and 
## [doc1387] who will soon become |queen| in her own right .  
## [doc1389] Isabella of Valois , |queen| consort of England (
## [doc1392] Holy Roman Empress , |queen| consort of Hungary a
## [doc1392] Holy Roman Empress , |queen| consort of Hungary a
## [doc1394]    Anne of Bohemia , |queen| of Richard II of Eng
## [doc1396] ically active Korean |queen| ( b. )              
## [doc1401]  Anabella Drummond , |queen| of Scotland October 
## [doc1401] atherine of Valois , |queen| consort of England f
## [doc1404] r – Marie of Anjou , |queen| of Charles VII of Fr
## [doc1409] Isabella of Valois , |queen| consort of England (
## [doc1412] garet I of Denmark , |queen| regnant of Denmark o
## [doc1415] lippa of Lancaster , |queen| of John I of Portuga
## [doc1416] ay – Anna of Celje , |queen| consort of Poland ( 
## [doc1416] Eleanor of Castile , |queen| consort of Navarre (
## [doc1418] erine of Lancaster , |queen| of Henry III of Cast
## [doc1421] wick - Grubenhagen , |queen| consort of Armenia a
## [doc1426] Eleanor of Navarre , |queen| regnant of Navarre (
## [doc1430]  Margaret of Anjou , |queen| of Henry VI of Engla
## [doc1430] hilippa of England , |queen| consort of Denmark ,
## [doc1431]     Violant of Bar , |queen| regent of Aragon ( b
## [doc1431]     Violant of Bar , |queen| regent of Aragon ( b
## [doc1433] val , French noble , |queen| consort of Naples ( 
## [doc1433] val , French noble , |queen| consort of Naples ( 
## [doc1435] Isabeau of Bavaria , |queen| of Charles VI of Fra
## [doc1437] atherine of Valois , |queen| of Henry V of Englan
## [doc1438]  Keo Phimpha becomes |queen| of Lan Xang for a fe
## [doc1441] te of Savoy , French |queen| ( d. ) March – Marga
## [doc1445] – Leonor of Aragon , |queen| of Portugal ( b. ) A
## [doc1449] i Khatun , Mongolian |queen| Ilham Ghali khan of 
## [doc1449] i Khatun , Mongolian |queen| January – Cecilia of
## [doc1451] Castile , Castillian |queen| regnant and first qu
## [doc1451] Holy Roman Empress , |queen| consort of Hungary a
## [doc1455]  Isabel of Coimbra , |queen| of Portugal ( b. )  
## [doc1455] – Queen Yun , Korean |queen| ( d. ) August – John
## [doc1456] une – Anne Neville , |queen| consort of Richard I
## [doc1457] f Naples , Hungarian |queen| ( d . ) date unknown
## [doc1461] Sophia of Halshany , |queen| consort of Poland ( 
## [doc1463]     Marie of Anjou , |queen| of France , spouse o
## [doc1464] odebrady , Hungarian |queen| consort ( b. )      
## [doc1464] andenburg , Bohemian |queen| ( d. )              
## [doc1465] abella of Clermont , |queen| consort of Naples ( 
## [doc1465]                  His |queen| consort Margaret of 
## [doc1465] Isabella del Balzo , |queen| consort of Naples ( 
## [doc1466]  Elizabeth of York , |queen| of Henry VII of Engl
## [doc1471]  Champa Shin Sawbu , |queen| regnant of Hanthawad
## [doc1471]  Champa Shin Sawbu , |queen| regnant of Hanthawad
## [doc1474] own Anacaona , Taino |queen| and poet ( d . ) Jua
## [doc1474] . ) Anacaona , Taino |queen| and poet ( d . ) Jua
## [doc1477] uchess of Brittany , |queen| of Charles VIII of F
## [doc1479] Eleanor of Navarre , |queen| regnant of Navarre (
## [doc1483] te of Savoy , French |queen| ( b. ) date unknown 
## [doc1485] rch – Anne Neville , |queen| of Richard III of En
## [doc1485] ne of Aragon , first |queen| of Henry VIII of Eng
## [doc1485] ra , Moroccan pirate |queen| Sebastiano del Piomb
## [doc1486] f Denmark , Scottish |queen| consort , daughter o
## [doc1490]  of Aragon Quilago , |queen| regnant of Cochasquí
## [doc1490]  of Aragon Quilago , |queen| regnant of Cochasquí
## [doc1492]  last living Yorkist |queen| , dies in England . 
## [doc1492] guerite de Navarre , |queen| of Henry II of Navar
## [doc1494] uary – Bona Sforza , |queen| of Sigismund I of Po
## [doc1499] – Claude of France , |queen| consort of France , 
## [doc1501] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1501] abella of Burgundy , |queen| of Christian II of D
## [doc1503]     Anacaona , Taino |queen| and poet ( b. )     
## [doc1503]  Elizabeth of York , |queen| of Henry VII of Engl
## [doc1503]     Anacaona , Taino |queen| and poet ( b. )     
## [doc1507] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1507] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1508]  d. ) Jane Seymour , |queen| of Henry VIII of Eng
## [doc1508] Beatrice of Naples , |queen| consort of Hungary (
## [doc1510] i Khatun , Mongolian |queen|
## [doc1510] i Khatun , Mongolian |queen| Agüeybaná , Taino ch
## [doc1512] erine Parr , English |queen| consort ( d. ) [ ] A
## [doc1513] f Saxe - Lauenburg , |queen| of Gustav I of Swede
## [doc1513] ort of Lithuania and |queen| consort of Poland ( 
## [doc1514]   Anne of Brittany , |queen| of Charles VIII of F
## [doc1515]            Quilago , |queen| regnant of Cochasquí
## [doc1515] andenburg , Bohemian |queen| ( b. )              
## [doc1515]            Quilago , |queen| regnant of Cochasquí
## [doc1515]      Mary of Guise , |queen| of James V of Scotla
## [doc1516] garet Leijonhufvud , |queen| of Gustav I of Swede
## [doc1518] erine Howard , fifth |queen| consort of Henry VII
## [doc1518] t – Joan of Naples , |queen| consort of Naples ( 
## [doc1519] Italian noblewoman , |queen| consort of Henry II 
## [doc1519] Isabella Jagiellon , |queen| consort of Hungary (
## [doc1519] erine Howard , fifth |Queen| of Henry VIII of Eng
## [doc1520]  Barbara Radziwill , |queen| of Poland ( d. ) Dec
## [doc1520] adeleine of Valois , |queen| of James V of Scotla
## [doc1522] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1523] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1524] – Claude of France , |queen| consort of Francis I
## [doc1524] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1525] – Eleanor of Viseu , |queen| of João II of Portug
## [doc1526] atherine Jagiellon , |queen| of John III of Swede
## [doc1526] abella of Burgundy , |queen| of Christian II of D
## [doc1533] o becomes his second |queen| consort .           
## [doc1533] rowns Anne Boleyn as |queen| consort of England ,
## [doc1533]         Mary Tudor , |queen| of Louis XII of Fran
## [doc1535]  Katarina Stenbock , |queen| of Gustav I of Swede
## [doc1535] f Saxe - Lauenburg , |queen| of Gustav I of Swede
## [doc1536] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1536] Anne Boleyn , second |queen| of Henry VIII of Eng
## [doc1536] sed of adultery with |queen| ) ( b. ) [ ]        
## [doc1537] adeleine of Valois , |queen| of James V of Scotla
## [doc1537]       Jane Seymour , |queen| consort of Henry VII
## [doc1539]    Cura Ocllo , Inca |queen| James Beaton , Scott
## [doc1539]    Cura Ocllo , Inca |queen|
## [doc1540]  Cleves , his fourth |Queen| consort ; marriage l
## [doc1540]  Cleves , his fourth |Queen| consort , is annulle
## [doc1541] r – Margaret Tudor , |queen| of James IV of Scotl
## [doc1542] d six days , becomes |queen| regnant on death of 
## [doc1542] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1542] erine Howard , fifth |queen| of Henry VIII of Eng
## [doc1545] lisabeth of Valois , |queen| of Philip II of Spai
## [doc1548] arr , sixth and last |Queen| of Henry VIII of Eng
## [doc1549] guerite de Navarre , |queen| of Henry II of Navar
## [doc1549] ays Sri Suriyothai , |queen| consort of Ayutthaya
## [doc1550] Månsdotter , Swedish |queen| ( d . ) December – A
## [doc1551] garet Leijonhufvud , |queen| of Gustav I of Swede
## [doc1551]  Barbara Radziwill , |queen| of Sigismund II of P
## [doc1553] of Lorraine , French |queen| consort ( d.        
## [doc1553]      Mary I rightful |Queen| , following a change
## [doc1557] vember Bona Sforza , |queen| of Sigismund I of Po
## [doc1557] e of Cleves , fourth |queen| of Henry VIII of Eng
## [doc1557]        Bona Sforza , |queen| of Sigismund I of Po
## [doc1558] – Maria of Austria , |queen| of Louis II of Hunga
## [doc1559] Isabella Jagiellon , |queen| consort of Hungary (
## [doc1560] ne – Mary of Guise , |queen| of James V of Scotla
## [doc1560] an Martyr , Georgian |queen| and saint ( d. ) Mar
## [doc1560] oung French king and |queen| are residing .      
## [doc1560] an Martyr , Georgian |queen| and saint ( d. ) Mar
## [doc1564] i Durgavati , Indian |queen| ( b. )              
## [doc1565] en Munjeong , Korean |queen| ( b. )              
## [doc1571] - Lauenburg , Danish |queen| , consort of Christi
## [doc1571] - Lauenburg , Danish |queen| , consort of Christi
## [doc1574]    Anne of Denmark , |queen| of James VI of Scotl
## [doc1574]    Anne of Denmark , |queen| of James VI of Scotl
## [doc1575]  Marie de ' Medici , |queen| of Henry IV of Franc
## [doc1583] atherine Jagiellon , |queen| of John II of Sweden
## [doc1583]  , warrior sovereign |queen| of Ndongo and Matamb
## [doc1584]   Ratu Hijau becomes |queen| regnant of Malay Pat
## [doc1589] therine de' Medici , |queen| of Henry II of Franc
## [doc1590] f Denmark is crowned |queen| consort of Scotland 
## [doc1593] h I.[ ] Irish pirate |queen| Grace O'Malley meets
## [doc1596] r – Anna Jagiellon , |queen| of Poland ( b. ) Sep
## [doc1599]  German princess and |queen| consort of Sweden ( 
## [doc1601]    Anne of Austria , |queen| of Louis XIII of Fra
## [doc1601] of Lorraine , French |queen| consort ( b. ) Febru
## [doc1602] lisabeth of France , |queen| of Philip IV of Spai
## [doc1609] ta Maria of France , |queen| of England , Scotlan
## [doc1610]  governing France as |queen| regent .            
## [doc1610] and executing native |queen| and her children , b
## [doc1613] uchess of Braganza , |queen| consort of Portugal 
## [doc1613] uchess of Braganza , |queen| consort of Portugal 
## [doc1619]    Anne of Denmark , |queen| consort of England ,
## [doc1621]  Katarina Stenbock , |queen| of Gustav I of Swede
## [doc1624] r – Ketevan , former |Queen| Consort of Kakheti (
## [doc1624] r – Ketevan Martyr , |queen| of Kakheti ( b. c . 
## [doc1625]  Holstein- Gottorp , |queen| consort of King Char
## [doc1631] klenburg - Güstrow , |queen| and regent of Denmar
## [doc1636] Holstein - Gottorp , |queen| consort of King Char
## [doc1638]   Theresa of Spain , |queen| consort of Louis XIV
## [doc1638] ortuguese princess , |queen| consort of Charles I
## [doc1642] de ' Medici , French |queen| consort and regent (
## [doc1644] lisabeth of France , |queen| of Philip IV of Spai
## [doc1644] , she is made ruling |queen| of Sweden .         
## [doc1654]  now former reigning |queen| of a Protestant nati
## [doc1655]  German princess and |queen| consort of Sweden ( 
## [doc1656] of Denmark , Swedish |queen| ( d. ) September – T
## [doc1657] – Christina , former |Queen| of Sweden , has Gian
## [doc1658]     Mary of Modena , |queen| of James II of Engla
## [doc1662] otland and Ireland , |queen| regnant ( d. ) [ ] M
## [doc1662]  Louise d' Orléans , |queen| consort of Spain ( d
## [doc1662]  Louise d' Orléans , |queen| consort of Spain ( d
## [doc1666]    Anne of Austria , |queen| of Louis XIII of Fra
## [doc1666] of Conti and titular |queen| of Poland ( d. ) Feb
## [doc1667] ise Gonzaga , Polish |queen| ( b. ) May Marcos Ra
## [doc1669] ta Maria of France , |queen| of England , Scotlan
## [doc1675] [ ] Tarabai , Indian |queen| regent of Maratha Em
## [doc1675] [ ] Tarabai , Indian |queen| regent of Maratha Em
## [doc1681] a Soltan , sovereign |queen| of Qasim Khanate    
## [doc1683] sa of Spain , French |queen| , married to Louis X
## [doc1683] of Ansbach , British |queen| and regent , wife of
## [doc1683] death on July of his |queen| consort , Maria Ther
## [doc1685]  Schwerin , Prussian |queen| consort ( d. ) May –
## [doc1685] k -Lüneburg , Danish |queen| ( b. )              
## [doc1687] orothea of Hanover , |queen| consort of Frederick
## [doc1691] fa'anu Rani Kilege , |queen| mother and regent of
## [doc1691] fa'anu Rani Kilege , |queen| mother and regent of
## [doc1692]  Elisabeth Farnese , |queen| of Philip V of Spain
## [doc1697]  Household to French |queen| Marie Leszczynska ( 
## [doc1697]  Household to French |queen| Marie Leszczynska ( 
## [doc1705] f Braganza , widowed |queen| consort of Charles I
## [doc1711] f Portugal and later |Queen| of Ferdinand VI of S
## [doc1711] Lorraine , Sardinian |queen| consort ( d. ) Octob
## [doc1711] Lorraine , Sardinian |queen| consort ( d. ) Willi
## [doc1715]  Holstein- Gottorp , |queen| consort of King Char
## [doc1718] y – Mary of Modena , |queen| of James II of Engla
## [doc1718]  Victoria of Spain , |queen| regent of Portugal (
## [doc1719] she is recognized as |queen| regnant of Sweden . 
## [doc1724] e of Great Britain , |queen| of Frederick V of De
## [doc1726]  Dorothea of Celle , |queen| consort of George I 
## [doc1730]      Velu Nachiyar , |queen| regnant of Sivaganga
## [doc1732] of Conti and titular |queen| of Poland ( b. )    
## [doc1732] of Conti and titular |queen| of Poland ( b. ) Fra
## [doc1735] y of Betsimisaraka , |queen| regnant ( d . )     
## [doc1735] y of Betsimisaraka , |queen| regnant ( d . )     
## [doc1735]  Schwerin , Prussian |queen| consort ( b. ) Augus
## [doc1737] aroline of Ansbach , |queen| of George II of Grea
## [doc1738] n Dadiani , Georgian |queen| consort ( d . )     
## [doc1741] Lorraine , Sardinian |queen| consort ( b. )      
## [doc1744] lenburg - Strelitz , |queen| of George III of Gre
## [doc1751] e of Great Britain , |queen| of Frederick V of De
## [doc1751] , British princess , |queen| consort of Denmark (
## [doc1757] orothea of Hanover , |queen| consort of Frederick
## [doc1761] r – Tarabai , Indian |queen| regent of Maratha Em
## [doc1766]  Elisabeth Farnese , |queen| of Philip V of Spain
## [doc1768] oline of Brunswick , |queen| of George IV of Unit
## [doc1768] oline of Brunswick , |queen| of George IV of Unit
## [doc1774]  Netherlands , Dutch |queen| consort ( from to ) 
## [doc1774]  Netherlands , Dutch |queen| consort ( from to ) 
## [doc1775] , British princess , |queen| consort of Denmark (
## [doc1775] , British princess , |queen| consort of Denmark (
## [doc1778] r Chennamma , Indian |queen| regnant ( d. ) Octob
## [doc1792] f Saxe - Meiningen , |queen| of William IV of Uni
## [doc1793] Antoinette , widowed |queen| consort of Louis XVI
## [doc1795] na of Russia , Dutch |queen| ( d . ) January – Po
## [doc1796] lu Nachiyar , Indian |queen| of Sivaganga estate 
## [doc1796] ie of Augustenburg , |queen| consort of Denmark (
## [doc1796] lu Nachiyar , Indian |queen| of Sivaganga estate 
## [doc1797] fenbüttel - Bevern , |queen| consort of Prussia (
## [doc1801] udovika of Bavaria , |queen| of Prussia ( d. ) De
## [doc1805] y of Betsimisaraka , |queen| regnant ( b. )      
## [doc1807] n Dadiani , Georgian |queen| consort ( b. ) Pierr
## [doc1814] arolina of Austria , |queen| of Ferdinand I of Tw
## [doc1818] lenburg - Strelitz , |queen| of George III of Uni
## [doc1818]  Württemberg , Dutch |queen| ( d. ) Charles Gouno
## [doc1818]  Württemberg , Dutch |queen| ( d. ) Charles Gouno
## [doc1828]  – Rani Lakshmibai , |queen| of Maratha -ruled pr
## [doc1829] r Chennamma , Indian |queen| regnant ( b. )      
## [doc1832]  June – Ka<U+02BB>ahumanu , |queen| consort of Hawaii ( 
## [doc1837] een Cheorin , Korean |queen| ( d. ) April – Georg
## [doc1838]  Liliuokalani , last |Queen| of Hawaii ( d. ) Bha
## [doc1838]  Liliuokalani , last |Queen| of Hawaii ( d. ) Sep
## [doc1849] f Saxe - Meiningen , |queen| of William IV of Uni
## [doc1854] e - Hildburghausen , |queen| consort of Bavaria (
## [doc1858] i of Jhansi , Indian |queen| of Jhansi and indepe
## [doc1858] ristina of Austria , |queen| consort of Spain , s
## [doc1865] Pavlovna of Russia , |queen| consort of Netherlan
## [doc1875] of Oldenburg , Greek |queen| ( b. )              
## [doc1877] hie of Württemberg , |queen| consort of Netherlan
## [doc1877] hie of Württemberg , |queen| consort of Netherlan
## [doc1878] een Cheorin , Korean |queen| consort ( b. )      
## [doc1878] een Cheorin , Korean |queen| consort ( b. )      
## [doc1889] herita , named after |queen| consort of Italy Mar
## [doc1893]  Hawaii , to prevent |queen| from abrogating Bayo
## [doc1893]  Hawaii , to prevent |queen| from abrogating Bayo
## [doc1898]  , German princess , |queen| consort of Christian
## [doc1898] consort of Austria , |queen| consort of Hungary (
## [doc1899] eni Mdluli serves as |queen| regent .            
## [doc1899] eni Mdluli serves as |queen| regent .            
## [doc1899]  , Afghan feminist , |queen| ( d. ) November Mona
## [doc1900]   The Queen Mother , |queen| consort of George VI
## [doc1900]   The Queen Mother , |queen| consort of George VI
## [doc1903] raga Mašin , Serbian |queen| consort ( b. )      
## [doc1903] raga Mašin , Serbian |queen| consort ( b. )      
## [doc1904] Barni Svastivatana , |queen| consort of King Praj
## [doc1906] sé of Belgium , last |Queen| of Italy ( d. ) [ ] 
## [doc1907] r – Carola of Vasa , |queen| consort of Saxony ( 
## [doc1911] r Kurshiah , Malayan |queen| ( d. ) May Lisa Fons
## [doc1916] glish - born Belgian |queen| consort of Leopold I
## [doc1917] apapa III , Tahitian |queen| ( b. )              
## [doc1921] waa , Asante warrior |queen| ( b. c. )           
## [doc1923] arma , French - born |queen| consort ( d. ) Al Qu
## [doc1923] arma , French - born |queen| consort ( d. ) Al Qu
## [doc1928] of Belgium , Spanish |Queen| Consort of King Baud
## [doc1929] bint Abdul - Hamid , |queen| consort of Jordan 19
## [doc1931] airangikaahu , Maori |queen| ( d . ) Arata Isozak
## [doc1935] er , American beauty |queen| and actress [ ]     
## [doc1937] ammar , British drag |queen| ( d. )              
## [doc1937] ammar , British drag |queen| ( d. )              
## [doc1944] s , model and beauty |queen| , winner of Miss Uni
## [doc1948] ceed her mother , as |queen| regnant of Netherlan
## [doc1948]  Alia Al - Hussein , |queen| consort of Jordan ( 
## [doc1950]  Eyiaba I , Ghanaian |queen| mother and advocate 
## [doc1950]  Eyiaba I , Ghanaian |queen| mother and advocate 
## [doc1951] by , American - born |queen| consort Jimi Jamison
## [doc1951] n , model and beauty |queen| March – Susan Musgra
## [doc1951] by , American - born |queen| consort August – Ors
## [doc1951]          The African |Queen| , starring Humphrey 
## [doc1953] zabeth II is crowned |Queen| of United Kingdom an
## [doc1955]  , comedian and drag |queen| ( d. ) [ ] Tito Roja
## [doc1955]  , comedian and drag |queen| ( d. ) [ ] June Istv
## [doc1960] Paul , American drag |queen| and entertainer Nove
## [doc1960] Paul , American drag |queen| and entertainer Jona
## [doc1961] en , American beauty |queen| , actress and model 
## [doc1963]  Lily , Spanish drag |queen| , writer , actor , a
## [doc1963] ms , American beauty |queen| , actress and singer
## [doc1963]  Lily , Spanish drag |queen| , writer , actor , a
## [doc1964] s Europe 's youngest |Queen| at age years , days 
## [doc1968] ion model and beauty |queen| Niamh Kavanagh , Iri
## [doc1970] g actress and beauty |queen| Athol Williams , Sou
## [doc1972] n of Denmark , first |Queen| of Denmark since and
## [doc1973] hka , Ukrainian Drag |queen| , comedian and singe
## [doc1973] hka , Ukrainian Drag |queen| , comedian and singe
## [doc1974] ipino model , beauty |queen| and actress Andrea D
## [doc1976]  , Venezuelan beauty |queen| , Miss Universe Dece
## [doc1978] n actress and beauty |queen| Matthew Lloyd , Aust
## [doc1979] chin , American drag |queen| Mohamed Kader , Togo
## [doc2019] eremony , making her |queen| consort of Thailand 
## [doc2019] eremony , making her |queen| consort of Thailand
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "yellow") +
  labs(title = "Queen", subtitles = "Number of Wikipedia Pages of Years That Mention Queen For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "modern", n = 2000000000000) %>%
  substr(2,8)
## [doc0001]   Furthermore , most |modern| scholars do not cons
## [doc0007] Commandery of Dong ( |modern| Puyang , Henan ) dec
## [doc0008] ack Sea near Tomis ( |modern| - day Constan<U+021B>a ) . 
## [doc0009] uni at Camulodunum ( |modern| - day Colchester ) i
## [doc0015]   Emona ( on site of |modern| - day Ljubljana ) is
## [doc0043] vernum Cantiacorum ( |modern| Canterbury ) ; and e
## [doc0043] rch on Camulodunum ( |modern| Colchester ) .      
## [doc0043]  Rutupiae ( probably |modern| Richborough ) on eas
## [doc0043] rch on Camulodunum ( |modern| Colchester ) .      
## [doc0043] vernum Cantiacorum ( |modern| Canterbury ) ; and e
## [doc0043]  Rutupiae ( probably |modern| Richborough ) on eas
## [doc0047] Claudii Vallensium ( |modern| Martigny ) in Alpes 
## [doc0050]  , Tripontium ( near |modern| Rugby ) and fort of 
## [doc0057] oku ( located around |modern| - day Fukuoka City )
## [doc0060] us , king of Iceni ( |modern| East Anglia ) , dies
## [doc0060] us , king of Iceni ( |modern| East Anglia ) , dies
## [doc0061] us , king of Iceni ( |modern| East Anglia ) , dies
## [doc0061] us , king of Iceni ( |modern| East Anglia ) , dies
## [doc0064]  town of Taxila ( in |modern| - day Pakistan ) .  
## [doc0068] ity is Vyadhapura or |modern| - day Ba Phnum Distr
## [doc0069] ctio and Traiectum ( |modern| Utrecht ) are destro
## [doc0070] Augusta Treverorum ( |modern| Trier ) .           
## [doc0079] a enters Caledonia ( |modern| - day Scotland ) but
## [doc0079] a enters Caledonia ( |modern| - day Scotland ) but
## [doc0080]  at Lindum Colonia ( |modern| Lincoln ) .         
## [doc0080]  Ara Agrippinensum ( |modern| Cologne ) .         
## [doc0090] rrison in suburbs of |modern| Regensburg ( approxi
## [doc0092] s into Mesopotamia ( |modern| Syria ) .           
## [doc0100] or city at centre of |modern| - day Mexico , reach
## [doc0100] or city at centre of |modern| - day Mexico , reach
## [doc0105] iutrix at Aquincum ( |modern| Budapest ) in Pannon
## [doc0106] tern part of Dacia ( |modern| Romania ) becomes a 
## [doc0120] t Miletos ( moved in |modern| times to Staatliche 
## [doc0120] t Miletos ( moved in |modern| times to Staatliche 
## [doc0136]  king of Raja Rata ( |modern| Sri Lanka ) Lucius J
## [doc0139]  to eastern areas of |modern| Turkey .            
## [doc0139] cted city of Mcurn ( |modern| Hösnek , Turkey ) . 
## [doc0150] own of Cananefates ( |modern| Netherlands ) .     
## [doc0166] ds invade Pannonia ( |modern| Hungary ) .         
## [doc0170] plunder Opitergium ( |modern| Oderzo ) and besiege
## [doc0170] Augusta Treverorum ( |modern| Trier ) .           
## [doc0175] mae of Coriovallum ( |modern| Heerlen [ ] ) are so
## [doc0180] Wall invade North of |modern| - day England , caus
## [doc0180]  camp in Vindobona ( |modern| Vienna ) .          
## [doc0187] cess , at Lugdunum ( |modern| - day Lyon ) .      
## [doc0197] lbinus at Lugdunum ( |modern| Lyon ) .            
## [doc0208] rtress at Eburacum ( |modern| York ) , and in sout
## [doc0211] , dies in Eboracum ( |modern| - day York ) while o
## [doc0218] mperial capital Xu ( |modern| - day Xuchang ) , bu
## [doc0226] arrives in Jiaozhi ( |modern| Hanoi ) , and is tak
## [doc0229] The city of Jianye ( |modern| Nanjing ) is founded
## [doc0233] i invade what is now |modern| - day Swabia .      
## [doc0234] ove to Moguntiacum ( |modern| Mainz ) , capital of
## [doc0241] ent city of Bagram ( |modern| Afghanistan ) is aba
## [doc0245] n , many of acres of |modern| - day Lincolnshire a
## [doc0250] e to Philippopolis ( |modern| Plovdi v ) .        
## [doc0250] ni drive Romans from |modern| area of Donau - Ries
## [doc0259]  , near Mediolanum ( |modern| Milan ) .           
## [doc0259] — which is called in |modern| times Gallic Empire 
## [doc0260] self at Mediolanum ( |modern| Milan ) ; he reorgan
## [doc0267] th Sarmatians ( from |modern| Iran ) , invade Balk
## [doc0268] near Naissus ( Niš , |modern| Serbia ) .          
## [doc0270] e Kingdom of Aksum ( |modern| Ethiopia ) begins mi
## [doc0271] resence from Dacia ( |modern| Romania ) , rational
## [doc0272] rtyrs ) in Lutetia ( |modern| Paris ) .           
## [doc0279] aetia and Pannonia ( |modern| Switzerland and Hung
## [doc0284]  outside Nicomedia ( |modern| Izmit , Turkey ) , D
## [doc0285] mmander at Bononia ( |modern| - day Boulogne ) , i
## [doc0286] tain of Tuoba clan ( |modern| Mongolia )          
## [doc0287]  city of Circesium ( |modern| Busayrah ) on Euphra
## [doc0292] d at capital Tikal ( |modern| Guatemala ) .       
## [doc0293] al port of Bononia ( |modern| Boulogne ) .        
## [doc0299] us in Thessaloniki ( |modern| Greece ) .          
## [doc0305] s palace at Salona ( |modern| Split ) on Adriatic 
## [doc0306] s outside Eboracum ( |modern| - day York ) .      
## [doc0313] ence in Mediolanum ( |modern| Milan ) .           
## [doc0313] vene in Mediolanum ( |modern| Milan ) .           
## [doc0315] Augusta Treverorum ( |modern| - day Trier ) .     
## [doc0316] ia Aurelia Cibalae ( |modern| - day Vinkovci , Cro
## [doc0317] s to make Jiankang ( |modern| Nanjing ) his new ca
## [doc0320] Augusta Treverorum ( |modern| Trier ) , capital of
## [doc0321] nia Agrippinensium ( |modern| - day Cologne ) .   
## [doc0321] old province Dacia ( |modern| Romania ) and makes 
## [doc0324] inian at Lampsacus ( |modern| - day Lapseki ) .   
## [doc0326]  Kingdom of Iberia ( |modern| - day Georgia ) by S
## [doc0330] ple , or Nova Roma ( |modern| - day Istanbul ) .  
## [doc0355] vance into Scythia ( |modern| Russia ) .          
## [doc0359]  fortress of Amida ( |modern| Diyarbakir ) .      
## [doc0360] legions in Lutetia ( |modern| Paris ) , at Thermes
## [doc0363] ities of Arsakawan ( |modern| Dogubayazit ) and Sa
## [doc0363] l of Nabataeans ( in |modern| - day Syria ) , is s
## [doc0367] lunder Moguntiacum ( |modern| Mainz ) .           
## [doc0368] Augusta Treverorum ( |modern| Trier ) .           
## [doc0368] ake strikes Nicaea ( |modern| Turkey ) .          
## [doc0369] ieges Artogerassa in |modern| Georgia , where Papa
## [doc0373] ear Constantinople ( |modern| Istanbul ) ; aqueduc
## [doc0375] Augusta Treverorum ( |modern| Trier ) , but minist
## [doc0375] t sands preserve for |modern| archaeologists .    
## [doc0378] ontier fortress near |modern| Niš ) , where he los
## [doc0381] ital to Mediolanum ( |modern| - day Milan ) .     
## [doc0383] inated at Lugdunum ( |modern| - day Lyon ) , leavi
## [doc0386] lished in Jiankang ( |modern| Nanjing ) .         
## [doc0388] Maximus near Emona ( |modern| Slovenia ) .        
## [doc0395] op of Hippo Regius ( |modern| Algeria ) .         
## [doc0399] ka and Kapilavastu ( |modern| Nepal ) .           
## [doc0399] uers Qing Province ( |modern| central and eastern 
## [doc0400] p of Aquae Flaviae ( |modern| Chaves , Portugal ) 
## [doc0401] tioned at Aquincum ( |modern| Budapest ) , is divi
## [doc0402] ance on Mediolanum ( |modern| Milan ) and besiege 
## [doc0406] ine at Mogontiacum ( |modern| Mainz ) , beginning 
## [doc0408] l of Castra Martis ( |modern| Bulgaria ) .        
## [doc0411] ire at Mogontiacum ( |modern| Mainz ) .           
## [doc0412] d on middle Danube ( |modern| Bulgaria ) .        
## [doc0421] Augusta Treverorum ( |modern| Trier ) .           
## [doc0424] eaves Thessalonica ( |modern| Central Macedonia ) 
## [doc0426] ilization at Copán ( |modern| Honduras ) .        
## [doc0427]  from Gungnae City ( |modern| Ji'an , Jilin ) on b
## [doc0428] aviae in Gallaecia ( |modern| Chaves ) in Portugal
## [doc0428]  and makes Tournai ( |modern| Belgium ) his reside
## [doc0429] wn of Hippo Regius ( |modern| Annaba ) .          
## [doc0431] city of Vindelicia ( |modern| Augsburg ) , reestab
## [doc0434] ly on site of Buda ( |modern| Budapest ) .        
## [doc0435] s use Hippo Regius ( |modern| Annaba ) as a port f
## [doc0437]  centered at Copán ( |modern| Honduras ) .        
## [doc0439] oys meet at Margum ( |modern| Bosnia and Herzegovi
## [doc0440] I , king of Iberia ( |modern| Georgia ) ( approxim
## [doc0441] , attack Constanta ( |modern| Romania ) , one of f
## [doc0442] oy city of Naissus ( |modern| Serbia ) .          
## [doc0444]  along Tisza River ( |modern| Hungary ) , and plan
## [doc0447] invasion , Serdica ( |modern| Sofia ) is destroyed
## [doc0451] roaches Aurelianum ( |modern| Orléans ) and city '
## [doc0455] thority in Noricum ( |modern| Austria ) and leaves
## [doc0456] s capital of Braga ( |modern| Portugal ) ; churche
## [doc0457] , bishop of Edessa ( |modern| Turkey ) Avitus , em
## [doc0458] capital at Tournai ( |modern| Belgium ) and become
## [doc0460] ated and Lusitania ( |modern| Portugal ) is conque
## [doc0466]  invasion of Dacia ( |modern| Romania ) .         
## [doc0469] dals invade Epirus ( |modern| Greece ) .          
## [doc0481] nce Gallia Belgica ( |modern| Belgium ) until his 
## [doc0484]  emperor at Tarsus ( |modern| Turkey ) .          
## [doc0486] ouncil of Seleucia ( |modern| Turkey ) .          
## [doc0487] Rugians in Noricum ( |modern| Austria ) .         
## [doc0489] s School of Edessa ( |modern| Turkey ) for teachin
## [doc0490] etreats to Ticinum ( |modern| Pavia ) , where he c
## [doc0494] rt town of Latakia ( |modern| Syria ) .           
## [doc0499] olis , Neocaesarea ( |modern| Niksar ) , Arsamosat
## [doc0501]  king of Dál Riata ( |modern| Scotland ) ( accordi
## [doc0502] ss - city of Amida ( |modern| Turkey ) .          
## [doc0503] onghold of Nisibis ( |modern| Turkey ) .          
## [doc0504] be and Sava rivers ( |modern| Serbia ) .          
## [doc0507] ear Constantinople ( |modern| Turkey ) .          
## [doc0507]  king of Dál Riata ( |modern| Scotland )          
## [doc0509]  territory in Gaul ( |modern| France ) , and deliv
## [doc0513] suburb of Hebdomon ( |modern| Turkey ) .          
## [doc0515] es suburb of Sycae ( |modern| Turkey ) across Gold
## [doc0516] uncil of Tarragona ( |modern| Spain ) is held .   
## [doc0517] . Maurice 's Abbey ( |modern| Switzerland ) .     
## [doc0519] hop of Batnan ( near |modern| Diyarbakir , Turkey 
## [doc0523] oner to Aurelianum ( |modern| Orléans ) .         
## [doc0523]       Leptis Magna ( |modern| Libya ) is sacked by
## [doc0525]  city of Anazarbus ( |modern| Turkey ) and renames
## [doc0527] ns at Cerdicesleah ( |modern| Chearsley ) .       
## [doc0529]  dynasty of Champa ( |modern| Vietnam ) .         
## [doc0530] 50,000 men at Dara ( |modern| Turkey ) , by entren
## [doc0532] Godomar near Autun ( |modern| France ) .          
## [doc0533] ands at Caput Vada ( |modern| Tunisia ) .         
## [doc0535] e secures Byzacena ( |modern| Tunisia ) and establ
## [doc0538] guria , Mediolanum ( |modern| Milan ) and Ariminum
## [doc0539] capture Mediolanum ( |modern| Milan ) , after many
## [doc0540] onquers Mediolanum ( |modern| Milan ) and Gothic c
## [doc0541] tervenes in Lazica ( |modern| Georgia ) , and supp
## [doc0542] rces near Faventia ( |modern| Faenza ) with 5,000 
## [doc0543] ity of Old Dongola ( |modern| Sudan ) along River 
## [doc0544] es empire Van Xuân ( |modern| Vietnam ) .         
## [doc0547] ss of Laribus ( near |modern| El Kef [ ] ) .      
## [doc0548] 00 men ) to Lazica ( |modern| Georgia ) .         
## [doc0549] Persians in Lazica ( |modern| Georgia ) in a surpr
## [doc0550] tion of Chimborazo ( |modern| Ecuador ) occurs .  
## [doc0551]  force at Ariminum ( |modern| Rimini ) .          
## [doc0553] and ( re ) settle in |modern| - day Austria .     
## [doc0553]  in west of empire ( |modern| Turkestan ) , and Mu
## [doc0553]  at Mons Lactarius ( |modern| Monti Lattari ) , Na
## [doc0555] es city of Latakia ( |modern| Syria ) .           
## [doc0556] takes Archaeopolis ( |modern| Georgia ) , and rout
## [doc0557] zantines in Lazica ( |modern| Georgia ) .         
## [doc0561] tle of Cúl Drebene ( |modern| Ireland ) is fought 
## [doc0562] ored , with Lazica ( |modern| Georgia ) in Byzanti
## [doc0564]  Yucatán Peninsula ( |modern| Mexico ) is first me
## [doc0566] ss city of Sirmium ( |modern| Serbia ) , as he had
## [doc0568] s king of Bernicia ( |modern| Scotland ) .        
## [doc0569] aramantian Kingdom ( |modern| Libya ) signs a peac
## [doc0570]  duke of Alemannia ( |modern| Germany ) .         
## [doc0571] province of Spania ( |modern| Andalusia ) , and se
## [doc0572] ss city of Nisibis ( |modern| Turkey ) .          
## [doc0574] ishop of Aventicum ( |modern| Avenches ) .        
## [doc0575] ns from Cappodocia ( |modern| Turkey ) , and stren
## [doc0576] asus into Anatolia ( |modern| Turkey ) .          
## [doc0577]     A predecessor of |modern| match , small sticks
## [doc0577] of years at Amasia ( |modern| Turkey ) .          
## [doc0577]         Reccopolis ( |modern| Zorita de los Canes 
## [doc0580] nvade Lower Danube ( |modern| Bulgaria ) .        
## [doc0581] hersonesos Taurica ( |modern| Ukraine ) , located 
## [doc0582] heast of Chang 'an ( |modern| Xi 'an ) .          
## [doc0582] ity of Constantina ( |modern| Turkey ) , but he is
## [doc0583] ties of Singidunum ( |modern| Belgrade ) and Vimin
## [doc0585] iege of Monokarton ( |modern| Turkey ) .          
## [doc0587] 0 men at Anchialus ( |modern| Bulgaria ) .        
## [doc0588] ed at Martyropolis ( |modern| Turkey ) .          
## [doc0589] ty of Martyropolis ( |modern| Turkey ) .          
## [doc0589] forces at Jiankang ( |modern| Nanjing ) , ending C
## [doc0590]  Chobin at Nisibis ( |modern| Turkey ) , and drive
## [doc0591]  Iberia into Media ( |modern| Azerbaijan ) .      
## [doc0592] onghold Singidunum ( |modern| Belgrade ) from Avar
## [doc0593] wamps and forests of |modern| - day Wallachia .   
## [doc0595] hern bank to Novae ( |modern| Bulgaria ) .        
## [doc0596] y of Marcianopolis ( |modern| Bulgaria ) as a mili
## [doc0597] ress city of Tomis ( |modern| Romania ) on Black S
## [doc0598] ress city of Tomis ( |modern| Romania ) .         
## [doc0599] rces at Singidunum ( |modern| Belgrade ) , and mov
## [doc0604] e fortress of Dara ( |modern| Turkey ) . [ ]      
## [doc0606] ishes his capital in |modern| - day Murshidabad ( 
## [doc0606] ab to Indus Valley ( |modern| Pakistan ) .        
## [doc0608]  king of Dál Riata ( |modern| Scotland ) .        
## [doc0610] ises on territory of |modern| Russia , being first
## [doc0610]  term Byzantine is a |modern| term invented by his
## [doc0612]  state of Palenque ( |modern| Mexico ) .          
## [doc0614] ritons in Dumnonia ( |modern| Devon ) .           
## [doc0615] stern territories of |modern| - day Yugoslavia ( B
## [doc0616] obably in Gododdin ( |modern| Scotland ) , and mov
## [doc0622]  , taking Khorasan ( |modern| Afghanistan ) .     
## [doc0623] still at Chalcedon ( |modern| Turkey ) .          
## [doc0624] an caravan at Badr ( |modern| - day Saudi Arabia )
## [doc0624] a , and Nakhchivan ( |modern| Azerbaijan ) .      
## [doc0625] River , near Adana ( |modern| Turkey ) .          
## [doc0626] sians at Chalcedon ( |modern| Turkey ) .          
## [doc0627] ortress at Derbent ( |modern| Dagestan ) .        
## [doc0628]  , plunder Tbilisi ( |modern| Georgia ) .         
## [doc0630] e Västergötland ( in |modern| - day Sweden ) ( acc
## [doc0631] attle near Trencín ( |modern| Slovakia ) .        
## [doc0632] f Sassanid Dynasty ( |modern| Iran ) .            
## [doc0634] exile in Dál Riata ( |modern| Scotland ) , to clai
## [doc0634]  near Beit Shemesh ( |modern| - day Israel ) .    
## [doc0636]  The city of Basra ( |modern| Iraq ) is founded on
## [doc0637] s far as Khuzestan ( |modern| Iran ) .            
## [doc0638] capture of Ascalon ( |modern| Israel ) .          
## [doc0641] far north as Manau ( |modern| Scotland ) , on beha
## [doc0642] rsians at Nahavand ( |modern| Iran ) .            
## [doc0643] chment to Sabratha ( |modern| Libya ) .           
## [doc0648] y on River Amblève ( |modern| Belgium ) .         
## [doc0650]  king of Dál Riata ( |modern| Scotland ) Fursey , 
## [doc0651] man ibn Affan in its |modern| - day form .        
## [doc0651]  forts in Khorasan ( |modern| Iran ) .            
## [doc0652] ucted in Chang 'an ( |modern| Xi 'an ) , during Ta
## [doc0652] Kingdom of Makuria ( |modern| Sudan ) .           
## [doc0654]  king of Dál Riata ( |modern| Scotland ) Jindeok o
## [doc0655] harbour of Phoenix ( |modern| Finike ) .          
## [doc0656] a invades Pengwern ( |modern| Wales ) and kills Ki
## [doc0658] nants in Carinthia ( |modern| Austria ) , and Avar
## [doc0660] domna of Dál Riata ( |modern| Scotland ) dies , an
## [doc0660] s , centred north of |modern| Klagenfurt , preserv
## [doc0661] t a shrine at Kufa ( |modern| - day Iraq ) , dying
## [doc0661] uered territories in |modern| - day Hampshire .   
## [doc0662] in exile in Lazica ( |modern| Georgia ) , on south
## [doc0663] a invades Pictland ( |modern| Scotland ) .        
## [doc0664] in southern Punjab ( |modern| Pakistan ) .        
## [doc0665] rules from Poltava ( |modern| Ukraine ) lands nort
## [doc0667]  Caucasian Albania ( |modern| Azerbaijan ) revolts
## [doc0668] ine center Amorium ( |modern| Turkey ) .          
## [doc0669]  Yamato prefecture ( |modern| - day Sakurai City )
## [doc0669]  island of Cyzicus ( |modern| Turkey ) .          
## [doc0670]       Tarumanagara ( |modern| Indonesia ) is divid
## [doc0674] its capital Kanchi ( |modern| India ) .           
## [doc0678]  in Geumjeong - gu ( |modern| South Korea ) is con
## [doc0679]  on island of Iona ( |modern| Scotland ) .        
## [doc0681]  in Anatolic Theme ( |modern| Turkey ) .          
## [doc0682] s to rule in Tikal ( |modern| Guatemala ) during L
## [doc0683] killed near Biskra ( |modern| Algeria ) .         
## [doc0684] The Pallava Empire ( |modern| India ) invades king
## [doc0684] polity of Palenque ( |modern| Mexico ) .          
## [doc0685] to invade Pictland ( |modern| Scotland ) .        
## [doc0685] eople to Macedonia ( |modern| North Macedonia ) . 
## [doc0687] sia , near Péronne ( |modern| France ) , at River 
## [doc0689] delta and Dorestad ( |modern| Netherlands ) become
## [doc0689]  Slavs in Anatolia ( |modern| Turkey ) , where are
## [doc0690] s to Westkapelle , ( |modern| Netherlands ) to Chr
## [doc0691]  Life in Ancient and |Modern| Jerusalem .         
## [doc0691] ces in Mesopotamia ( |modern| Iraq ) .            
## [doc0692]  at Sebastopolis , ( |modern| Turkey ) by Arab for
## [doc0696] orms , at Salzburg ( |modern| Austria ) .         
## [doc0698] as far as Samosata ( |modern| Turkey ) . [ ] [ ]  
## [doc0699]  River , and Taron ( |modern| Turkey ) . [ ] [ ]  
## [doc0700]  in northern part of |modern| day                 
## [doc0700] ccupy Cuzco Valley ( |modern| Peru ) in southern h
## [doc0700]     Diquis culture ( |modern| Costa Rica ) starts 
## [doc0701]  Ash'ath near Kufa ( |modern| Iraq ) .            
## [doc0702] upy port of Jeddah ( |modern| Saudi Arabia ) .    
## [doc0703] id stops in Frisia ( |modern| Netherlands ) , to v
## [doc0704] 00 men ) at Sisium ( |modern| Turkey ) , killing m
## [doc0705]  flees to Bithynia ( |modern| Turkey ) , where he 
## [doc0705] ion called Zagora in |modern| - day Bulgaria. [ ] 
## [doc0705] Maghreb Al - Awsat ( |Modern| - day Algeria ) , wh
## [doc0705] live at Nakhchevan ( |modern| Azerbaijan ) . [ ] [
## [doc0705] hara and Samarkand ( |modern| Uzbekistan ) , as we
## [doc0706] Slavs of Carinthia ( |modern| Austria ) .         
## [doc0708] conquering Amorium ( |modern| Turkey ) .          
## [doc0709] alik raids Isauria ( |modern| Turkey ) .          
## [doc0711]  in Manaw Gododdin ( |modern| Scotland ) ( approxi
## [doc0712] rezm and Samarkand ( |modern| Uzbekistan ) .      
## [doc0713] Antioch in Pisidia ( |modern| Turkey ) , which nev
## [doc0714]  of Lan Prefecture ( |modern| Lanzhou ) .         
## [doc0714] ds Nonnberg Abbey in |modern| - day Austria .     
## [doc0714] or of Al - Andalus ( |modern| Spain ) .           
## [doc0714]  , dies at Jupille ( |modern| Belgium ) .         
## [doc0715] from area La Rioja ( |modern| - day Spain ) , and 
## [doc0715] r from of Opsikion ( |modern| Turkey ) .          
## [doc0716] vasion in Anatolia ( |modern| Turkey ) .          
## [doc0716] or of Al - Andalus ( |modern| Spain ) , is assassi
## [doc0716] a ( western parts of |modern| - day Netherlands ) 
## [doc0716] n rivals near Amel ( |modern| - day Belgium ) .   
## [doc0717]  of Anatolic Theme ( |modern| Turkey ) .          
## [doc0718] ns in Lower Saxony ( |modern| - day Germany ) .   
## [doc0718] south of Nicomedia ( |modern| Turkey ) . [ ] [ ] [
## [doc0719] ily invades Frisia ( |modern| Netherlands ) and su
## [doc0723]  city of Kathmandu ( |modern| Nepal ) .           
## [doc0724] hirst near Khujand ( |modern| Tajikistan ) .      
## [doc0726] n against Anatolia ( |modern| Turkey ) .          
## [doc0730] n central Anatolia ( |modern| Turkey ) , which rem
## [doc0731]  sent to Samarkand ( |modern| Uzbekistan ) , which
## [doc0732] ction over Bavaria ( |modern| Germany ) .         
## [doc0733]  king of Dál Riata ( |modern| Scotland )          
## [doc0734]  ) of Al - Andalus ( |modern| Spain ) , enter Prov
## [doc0736] ity state of Tikal ( |modern| - day Guatemala ) , 
## [doc0737] rom Al - Andalus , ( |modern| Spain ) sent by Uqba
## [doc0738]  against Saxons ( in |modern| - day Westphalia ) o
## [doc0739] dies at Echternach ( |modern| Luxembourg ) .      
## [doc0740] feated at Akroinon ( |modern| - day Afyon ) by Byz
## [doc0741]  in plain of Ghrab ( |modern| Morocco ) .         
## [doc0741] uirzy - sur - Oise ( |modern| - day Picardy ) .   
## [doc0742]  region of Mértola ( |modern| Portugal ) .        
## [doc0743] th - west Anatolia ( |modern| Turkey ) , and later
## [doc0744]  of Berber tribes in |modern| - day western Morocc
## [doc0745]  from Lake Balkash ( |modern| Kazakhstan ) to Lake
## [doc0745]         Carantania ( |modern| Austria ) loses its 
## [doc0746] ility at Cannstatt ( |modern| Stuttgart ) , and ha
## [doc0746] ptures Germanikeia ( |modern| Turkey ) .          
## [doc0747] ally begin in Merv ( |modern| Turkmenistan ) .    
## [doc0747] ) , and Monemvasia ( |modern| Greece ) .          
## [doc0748] he city of Baalbek ( |modern| Lebanon ) is sacked 
## [doc0748]  province Khorasan ( |modern| Iran ) , marking con
## [doc0750] ity of Teotihuacan ( |modern| Mexico ) is destroye
## [doc0752]  city of Yaxchilan ( |modern| Mexico ) , after a -
## [doc0753]  bishop of Utrecht ( |modern| Netherlands ) , by m
## [doc0754] uslim , at Nisibis ( |modern| Turkey ) .          
## [doc0755]  from Fanyang ( near |modern| Beijing ) , and move
## [doc0755] ar in al - Andalus ( |modern| Spain ) , where over
## [doc0756] enliu and Yingyang ( |modern| Zhengzhou , Henan ) 
## [doc0756]  tortured at Basra ( |modern| Iraq ) , on orders f
## [doc0756] ss city of Markeli ( |modern| Bulgaria ) .        
## [doc0756] t Dumbarton Castle ( |modern| Scotland ) .        
## [doc0757]  city of Sijilmasa ( |modern| Morocco ) is founded
## [doc0757] c ) dies at Cangas ( |modern| Spain ) , after an -
## [doc0758] sels dock at Hanoi ( |modern| Vietnam ) instead . 
## [doc0758] r city of Kairouan ( |modern| Tunisia ) , and mass
## [doc0759] near Stara Planina ( |modern| Bulgaria ) .        
## [doc0760]            However , |modern| analysis of Offa 's 
## [doc0760] ashtrakuta Dynasty ( |modern| India ) ( approximat
## [doc0760] nzhao ( Nanchao ) in |modern| - day southern China
## [doc0760]  city of Dos Pilas ( |modern| Guatemala ) is aband
## [doc0761] I as king of Picts ( |modern| Scotland ) .        
## [doc0761] ity of Kairouan ( in |modern| - day Tunisia ) , fr
## [doc0762] Rahman I , at Beja ( |modern| - day Portugal ) .  
## [doc0762] le family , south of |modern| - day Munich , Germa
## [doc0763] , as king of Picts ( |modern| Scotland ) .        
## [doc0763] pital of Chang 'an ( |modern| Xi 'an ) for days , 
## [doc0764] ounds Lorsch Abbey ( |modern| - day Germany ) .   
## [doc0765] red around Tlemcen ( |modern| Algeria ) .         
## [doc0766] eastern Cappadocia ( |modern| Turkey ) .          
## [doc0767] apital of Kairouan ( |modern| Tunisia ) .         
## [doc0768] s city of Deventer ( |modern| - day Netherlands ) 
## [doc0769]     Hersfeld Abbey ( |modern| - day Hesse -Nassau 
## [doc0770] illehad to Frisia in |modern| - day Netherlands ( 
## [doc0773] gtekcha of Manipur ( |modern| India ) dies after a
## [doc0774]  of northern Hesse ( |modern| Germany ) , and burn
## [doc0775] battle at Hlidbeck ( |modern| - day Lübbecke ) .  
## [doc0775] reb coast at Ténès ( |modern| Algeria ) .         
## [doc0777] Kremsmünster Abbey ( |modern| Austria ) .         
## [doc0778] anikeia in Cilicia ( |modern| Turkey ) .          
## [doc0778] nks of Fulda Abbey ( |modern| - day Hesse ) hurrie
## [doc0778] vades Al - Andalus ( |modern| Spain ) , and conque
## [doc0779] n , crosses Rhine at |modern| town of Wesel , and 
## [doc0779] ssex at Bensington ( |modern| - day Oxfordshire ) 
## [doc0780] omplex in Magelang ( |modern| Indonesia ) , is beg
## [doc0783] o to flee to Álava ( |modern| Spain ) .           
## [doc0783] Abbey of St. Denis ( |modern| - day Paris ) .     
## [doc0783] ns in Lower Saxony ( |modern| Germany ) .         
## [doc0785]  Girona and Urgell ( |modern| Spain ) from Moors .
## [doc0788] nto Anatolic Theme ( |modern| Turkey ) .          
## [doc0788] nvade East Francia ( |modern| Germany ) .         
## [doc0788]  ruler of Asturias ( |modern| Spain ) .           
## [doc0789] ds town of Herford ( |modern| Germany ) , in order
## [doc0790] into Mekong Valley ( |modern| Vietnam ) .         
## [doc0790] eastern Asia Minor ( |modern| Turkey ) , revolts a
## [doc0792]  of Marcellae , near |modern| town of Karnobat ( B
## [doc0794] , count of Hesbaye ( |modern| Belgium ) .         
## [doc0794] ed in Franconofurd ( |modern| - day Frankfurt am M
## [doc0795] o usurp of Gwynedd ( |modern| Wales ) .           
## [doc0795] rs of Al - Andalus ( |modern| Spain ) and Frankish
## [doc0796]  of Avar Khaganate ( |modern| Hungary ) .         
## [doc0797] lbe estuaries , near |modern| - day Cuxhaven .    
## [doc0798] a and sacks Lisbon ( |modern| Portugal ) .        
## [doc0798] ia invades Gwynedd ( |modern| Wales ) , and kills 
## [doc0798] llage of Bornhöved ( |modern| - day Neumünster ) ,
## [doc0799] magne at Paderborn ( |modern| Germany ) to seek pr
## [doc0801] rdalbian territory ( |modern| - day Schleswig - Ho
## [doc0802] lares Khmer Empire ( |modern| - day Cambodia ) ind
## [doc0805] e Chapel in Aachen ( |modern| Germany ) is consecr
## [doc0805]  to city of Patras ( |modern| Greece ) , with aid 
## [doc0805] nd conquer Bohemia ( |modern| Czech Republic ) .  
## [doc0806] Guadalquivir River ( |modern| Spain ) , in what co
## [doc0807] structed in Qazvin ( |modern| Iran ) , by orders o
## [doc0807] . [ ] Al - Andalus ( |modern| Spain ) :           
## [doc0808] el , king of Powys ( |modern| Wales ) , dies after
## [doc0808] Gharb al - Andalus ( |modern| Portugal ) , Hazim i
## [doc0809] as count of Aragon ( |modern| Spain ) .           
## [doc0809] rising in Khorasan ( |modern| Iran ) .            
## [doc0809] ortress of Serdica ( |modern| Sofia ) , after a lo
## [doc0809] Gharb al - Andalus ( |modern| Portugal ) is crushe
## [doc0810]   [ ] Al - Andalus ( |modern| Spain ) :           
## [doc0810] ikal National Park ( |modern| Guatemala ) .       
## [doc0811] st towards Serdica ( |modern| - day Sofia ) .     
## [doc0813]  , attack Vestfold ( |modern| Norway ) , due to it
## [doc0813] hael I near Edirne ( |modern| Turkey ) .          
## [doc0816]  Cynan on Anglesey ( |modern| Wales ) , who is kil
## [doc0817] d emir of Ifriqiya ( |modern| Tunisia ) .         
## [doc0818]  coast of Anatolia ( |modern| Turkey ) , marking f
## [doc0818] gees arrive in Fez ( |modern| Morocco ) .         
## [doc0820] s ruler of Munster ( |modern| Ireland ) .         
## [doc0822] city - state Copán ( |modern| Guatemala ) .       
## [doc0822] as in Al - Andalus ( |modern| Spain ) .           
## [doc0823] ge in Arkadiopolis ( |modern| Turkey ) .          
## [doc0824] ikings raid Bangor ( |modern| Wales ) for second t
## [doc0825]  with West Saxons at |modern| - day Camelford ( ap
## [doc0825] ed in Central Java ( |modern| Indonesia ) .       
## [doc0827]  is exiled to Zara ( |modern| Croatia ) .         
## [doc0827] iginally in Persia ( |modern| Iran ) , introduce p
## [doc0827] to Plain of Sinjar ( |modern| Iraq ) , under order
## [doc0828] The city of Merida ( |modern| Spain ) rises twice 
## [doc0829] omes king of Agder ( |modern| Norway ) .          
## [doc0829] sh abbot of Corvey ( |modern| Westphalia ) , is ap
## [doc0830] reated in Kairouan ( |modern| Tunisia ) , by Aghla
## [doc0830]       Hirsau Abbey ( |modern| Germany ) is founded
## [doc0830] a and Al - Andalus ( |modern| Spain ) defeat Byzan
## [doc0831] st church at Birka ( |modern| Sweden ) .          
## [doc0831] sion into Anatolia ( |modern| Turkey ) , and captu
## [doc0831] ous , at Ingelheim ( |modern| Germany ) .         
## [doc0832] fortress of Loulon ( |modern| Turkey ) is captured
## [doc0832] town of Clondalkin ( |modern| Ireland ) is sacked 
## [doc0833] , in Spanish March ( |modern| Spain ) , a buffer z
## [doc0833] nd ( western part of |modern| Slovakia ) .        
## [doc0834] rovince of Utrecht ( |modern| Netherlands ) .     
## [doc0834] berg near Tønsberg ( |modern| Norway ) is buried i
## [doc0836] e of city of Soest ( |modern| Germany ) .         
## [doc0837] The city of Naples ( |modern| Italy ) is attacked 
## [doc0838] ine , on Ems River ( |modern| Germany ) .         
## [doc0839] t La Seu d' Urgell ( |modern| Spain ) .           
## [doc0840] n city of Qaliqala ( |modern| Erzurum ) .         
## [doc0841] k Pool ) or Dublin ( |modern| Ireland ) is founded
## [doc0841]  near Mount Latros ( |modern| Turkey ) .          
## [doc0842] im dies at Samarra ( |modern| Iraq ) , after an ei
## [doc0843] mirate of Córdoba in |modern| - day Spain . [ ]   
## [doc0843] hich is precursor to |modern| - day Germany .     
## [doc0844] s sent to Anatolia ( |modern| Turkey ) , against M
## [doc0845] r Lamos in Cilicia ( |modern| Turkey ) .          
## [doc0846]  near Lake Balaton ( |modern| Hungary ) .         
## [doc0846] ón in Al - Andalus ( |modern| Spain ) .           
## [doc0848] elona and Empúries ( |modern| Spain ) .           
## [doc0850] hbishop of Cologne ( |modern| Germany ) .         
## [doc0850] MacAlpin ) of Alba ( |modern| Scotland ) invades N
## [doc0850] lley near Roopkund ( |modern| India ) were killed 
## [doc0850] restad and Utrecht ( |modern| - day Netherlands ) 
## [doc0850] f northern Yucatán ( |modern| Mexico ) .          
## [doc0851]  Mosque of Samarra ( |modern| Iraq ) is completed 
## [doc0851] s Bald in Meerssen ( |modern| - day Netherlands ) 
## [doc0852] ey in Lower Saxony ( |modern| Germany ) is founded
## [doc0852] as in al - Andalus ( |modern| Spain ) .           
## [doc0853] r Church in Zürich ( |modern| Switzerland ) is fou
## [doc0853] Seeburg and Apuole ( |modern| Courland ) .        
## [doc0856]  Abbasid Caliphate ( |modern| - day Tunisia ) , al
## [doc0856] ke strikes Damghan ( |modern| - day Iran ) , killi
## [doc0859] as in al - Andalus ( |modern| Spain ) .           
## [doc0859]  is founded in Fes ( |modern| Morocco ) , by Fatim
## [doc0860] f Uqba at Kairouan ( |modern| Tunisia ) , are made
## [doc0861]  capital at Zaranj ( |modern| Afghanistan ) .     
## [doc0862] ment near Novgorod ( |modern| Russia ) , and found
## [doc0863] n , in Paphlagonia ( |modern| Turkey ) .          
## [doc0863] n plunder Dorestad ( |modern| Netherlands ) , a Fr
## [doc0868] f Aghlabid Dynasty ( |modern| Tunisia ) , conquer 
## [doc0870] rgell and Cerdanya ( |modern| - day Catalonia ) . 
## [doc0870] cations with Basra ( |modern| Iraq ) .            
## [doc0870]  makes Levý Hradec ( |modern| Czech Republic ) his
## [doc0872] stantine I of Alba ( |modern| Scotland ) and his V
## [doc0873] The city of Toledo ( |modern| Spain ) rises up for
## [doc0874]  army at Changyuan ( |modern| Xinxiang ) .        
## [doc0875] a court at Bukhara ( |modern| Uzbekistan ) , which
## [doc0875] in central region of |modern| - day Vietnam .     
## [doc0877] er of Khmer Empire ( |modern| Cambodia ) .        
## [doc0877] e in Five Boroughs ( |modern| East Midlands ) .   
## [doc0878] otamia seize Wasit ( |modern| Iraq ) , and establi
## [doc0878] rs city of Coimbra ( |modern| Portugal ) , which i
## [doc0880] le near Cephalonia ( |modern| Greece ) .          
## [doc0881] rs of Khmer Empire ( |modern| Cambodia ) at Angkor
## [doc0882] raid , near Remich ( |modern| Luxembourg ) .      
## [doc0883] devastated Chaldea ( |modern| Iraq ) since .      
## [doc0885] fficials at Lobith ( |modern| Netherlands ) , and 
## [doc0885] bbey of Saint Gall ( |modern| Switzerland ) .     
## [doc0885] ho want to return to |modern| - day Iraq to depart
## [doc0885] feated near Ramlah ( |modern| Israel ) by Khumaraw
## [doc0887] ng , king of Silla ( |modern| Korea ) Xiao Gou , c
## [doc0887]  , in Al - Andalus ( |modern| Spain ) .           
## [doc0889] , located in Seoul ( |modern| South Korea ) , is f
## [doc0889] er of Khmer Empire ( |modern| Cambodia ) , dies an
## [doc0889] d base at Fraxinet ( |modern| - day La Garde - Fre
## [doc0889] fied Silla kingdom ( |modern| Korea ) under King J
## [doc0889] na in Al - Andalus ( |modern| Spain ) , sets ancho
## [doc0889] ba and Strathclyde ( |modern| Scotland ) are depos
## [doc0890] of Kirby Muxloe ( in |modern| - day Leicestershire
## [doc0891] ( near Leuven ) , in |modern| - day Flanders , suf
## [doc0891]  , in Al - Andalus ( |modern| Spain ) .           
## [doc0893] t control of Mosul ( |modern| Iraq ) from Shayban 
## [doc0893] do in Al - Andalus ( |modern| Spain ) .           
## [doc0893]  ) of Khmer Empire ( |modern| Cambodia ) dedicates
## [doc0894] ncipality of Nitra ( |modern| - day Slovakia ) is 
## [doc0895] ess of Mardin ( near |modern| Cizre ) .           
## [doc0895]  , in Michatlauhco , |modern| - day Morelos ( appr
## [doc0896]  at Boulgarophygon ( |modern| Turkey ) ; Byzantine
## [doc0896] n Carpathian Basin ( |modern| Hungary ) .         
## [doc0896] Southern Buh river ( |modern| Ukraine ) .         
## [doc0899] ed capital of Amid ( |modern| Turkey ) to Caliph A
## [doc0901] mirate in Ifriqiya ( |modern| Tunisia ) . [ ]     
## [doc0901] rd Chac ) at Uxmal ( |modern| Mexico ) .          
## [doc0902] emporium ) in Oran ( |modern| Algeria ) .         
## [doc0903] s of Orontes River ( |modern| Syria ) .           
## [doc0903] ube River in Asten ( |modern| Austria ) .         
## [doc0904] rsus , near Marash ( |modern| Turkey ) .          
## [doc0905] ores of Lake Ohrid ( |modern| - day North Macedoni
## [doc0905] rison at Tong Binh ( |modern| Hanoi ) is destroyed
## [doc0905] entered in Navarre ( |modern| - day Spain ) .     
## [doc0906] dukes of Franconia ( |modern| - day Bavaria ) .   
## [doc0907] alauspurc ( probably |modern| - day Bratislava in 
## [doc0909] yan site of Toniná ( |modern| - day Chiapas , Mexi
## [doc0909]  – The Min Kingdom ( |modern| - day Fujian provinc
## [doc0909] uslims in Ifriqiya ( |modern| Tunisia ) gains suze
## [doc0913] ach near Inn River ( |modern| Germany ) .         
## [doc0914]  city , Adrianople ( |modern| Turkey ) , is besieg
## [doc0914] near al - Hanniyya ( |modern| - day El Alamein ) .
## [doc0914] is tent at Bukhara ( |modern| Uzbekistan ) by some
## [doc0914] ubasa takes Barqah ( |modern| - day Benghazi ) , a
## [doc0916] iphate in Ifriqiya ( |modern| Tunisia ) .         
## [doc0916] eleimon , in Ohrid ( |modern| North Macedonia ) . 
## [doc0917] ack and burn Basel ( |modern| Switzerland ) .     
## [doc0917] tress of Anchialos ( |modern| Pomorie ) on Black S
## [doc0917] advisor , in Panyu ( |modern| Guangdong ) and Guan
## [doc0917] flees to Mesembria ( |modern| Nesebar ) and escape
## [doc0918] y called Shangjing ( |modern| - day Inner Mongolia
## [doc0919] t Pueblo Bonito , in |modern| - day New Mexico 's 
## [doc0919] iphate of Ifriqiya ( |modern| - day Tunisia ) laun
## [doc0920] I conquers Utrecht ( |modern| - day Netherlands ) 
## [doc0921] Drahomíra at Tetín ( |modern| Czech Republic ) .  
## [doc0921] te towards Bukhara ( |modern| Uzbekistan ) .      
## [doc0925] ar city of Tétouan ( |modern| Morocco ) .         
## [doc0926] tery of St. Gallen ( |modern| Switzerland ) .     
## [doc0928] ng of Khmer Empire ( |modern| Cambodia ) .        
## [doc0929] ronghold of Lenzen ( |modern| Germany ) .         
## [doc0929]  Java to East Java ( |modern| Indonesia ) .       
## [doc0931] s governor of Amol ( |modern| Iran ) .            
## [doc0932] governor of Kirman ( |modern| Iran ) .            
## [doc0933]  Maghreb al - Aqsa ( |modern| Morocco ) from local
## [doc0934] stery , is founded ( |modern| Switzerland ) .     
## [doc0934] nally at Hongseong ( |modern| South Korea ) .     
## [doc0934]  and conquers Fars ( |modern| Iran ) .            
## [doc0935] Ashir , near Médéa ( |modern| Algeria ) .         
## [doc0935] yarid ruler in Rey ( |modern| Iran ) .            
## [doc0935] ossing Upper Adige ( |modern| Tyrol ) .           
## [doc0938] includes area around |modern| - day Beijing , are 
## [doc0939] y of Simancas ( near |modern| - day Valladolid ) ,
## [doc0940]  synagogal poetry in |modern| - day Iraq ( approxi
## [doc0941] as ruler of Jórvik ( |modern| Yorkshire ) .       
## [doc0941] south as Nicomedia ( |modern| - day Izmit ) .     
## [doc0941] ace in Quedlinburg ( |modern| Saxony - Anhalt ) , 
## [doc0942] nvade Al - Andalus ( |modern| Spain ) and besiege 
## [doc0942] f Danish Mercia ) in |modern| - day East Midlands 
## [doc0942] Simha , in Gujarat ( |modern| India ) .           
## [doc0943] ress city of Barda ( |modern| Azerbaijan ) .      
## [doc0943] rthern Mesopotamia ( |modern| Iraq ) .            
## [doc0944] in Aurès Mountains ( |modern| Algeria ) against Fa
## [doc0944] s built in Samarra ( |modern| Iraq ) .            
## [doc0945] liphate of Córdoba ( |modern| Spain ) .           
## [doc0946] f Paektu Mountain on |modern| North Korea - China 
## [doc0947] in Hodna Mountains ( |modern| - day Algeria ) .   
## [doc0948] The Kingdom of Nri ( |modern| Nigeria ) is founded
## [doc0948] in Jaffna District ( |modern| Sri Lanka ) , is bui
## [doc0948] ng walls of Hadath ( |modern| Turkey ) .          
## [doc0949] varian army at Laa ( |modern| Austria ) .         
## [doc0949] res Theodosiopolis ( |modern| - day Erzurum ) afte
## [doc0951]  ( called Shizu ) in |modern| - day Shanxi who res
## [doc0953] tryside of Malatya ( |modern| Turkey ) .          
## [doc0954]            Seborga ( |modern| -day Liguria ) comes
## [doc0954] aye and Carbonaria ( |modern| Belgium ) .         
## [doc0955] troys city of Oran ( |modern| Algeria ) .         
## [doc0956]  Tarsus in Cilicia ( |modern| Turkey ) .          
## [doc0956] I as ruler of León ( |modern| Spain ) .           
## [doc0956] refuge in Flanders ( |modern| Belgium ) , where Co
## [doc0958] o ruler of Kashmir ( |modern| India ) .           
## [doc0958] ers most of north of |modern| - day Morocco and Al
## [doc0960] e Kingdom of Aksum ( |modern| Eritrea ) is destroy
## [doc0960] n south Asia Minor ( |modern| - day Turkey ) .    
## [doc0960] liphate of Córdoba ( |modern| Spain ) .           
## [doc0961] rs eastward to Ani ( |modern| Turkey ) .          
## [doc0961] ba in Al - Andalus ( |modern| Spain ) .           
## [doc0964] - eastern Anatolia ( |modern| Turkey ) .          
## [doc0965]  near An Numaniyah ( |modern| Iran ) .            
## [doc0965] aids into Anatolia ( |modern| Turkey ) permanently
## [doc0966] urt at Heian - kyo ( |modern| - day Kyoto ) .     
## [doc0967] , and conquers Fez ( |modern| - day Morocco ) .   
## [doc0970] Leibnitz in Styria ( |modern| Austria ) .         
## [doc0970] rs at Arcadiopolis ( |modern| Turkey ) .          
## [doc0970] old of Philippolis ( |modern| - day Plovdiv ) , by
## [doc0971]  near Alexandretta ( |modern| Turkey ) , while mai
## [doc0971] t of Chola dynasty ( |modern| India ) , is murdere
## [doc0972] nople and Anatolia ( |modern| Turkey ) , where are
## [doc0972] iceroy in Ifriqiya ( |modern| Tunisia ) and become
## [doc0972] oss Dnieper rapids ( |modern| Ukraine ) .         
## [doc0973] leben in Thuringia ( |modern| Germany ) after a - 
## [doc0973] oves against Amida ( |modern| Turkey ) .          
## [doc0973] rom El - Mansuriya ( |modern| Tunisia ) to newly f
## [doc0974] vaded Nordalbingia ( |modern| - day Holstein ) , t
## [doc0976] f Carinthia covering |modern| - day Austria . [ ] 
## [doc0977] governor of Ghazna ( |modern| Afghanistan ) .     
## [doc0977] , located in Najaf ( |modern| Iraq ) , is complete
## [doc0978] sehold to Bianjing ( |modern| - day Kaifeng ) .   
## [doc0978] ) , near Pankaleia ( |modern| - day Hisarköy ) .  
## [doc0979] eros , at Sarvenis ( |modern| Turkey ) .          
## [doc0979] d ) on Senne River ( |modern| Belgium ) .         
## [doc0979] ats Song forces near |modern| - day Beijing .     
## [doc0980] es Kievan realm from |modern| Ukraine to Baltic Se
## [doc0980] Bishopric of Liège ( |modern| Belgium ) which will
## [doc0980] ress of Trelleborg ( |modern| Denmark ) .         
## [doc0980] ilwa ( an island off |modern| Tanzania ) , is foun
## [doc0983] ur , attack Aleppo ( |modern| Syria ) , but are re
## [doc0983] g northern border of |modern| Denmark .           
## [doc0984] re Kingdom of León ( |modern| -day Spain ) .      
## [doc0985] er of Al - Andalus ( |modern| - day Spain ) .     
## [doc0986] rs city of Coimbra ( |modern| Portugal ) .        
## [doc0987] es city of Coimbra ( |modern| Portugal ) .        
## [doc0989] ounded in Timbuktu ( |modern| - day Mali ) .      
## [doc0990] ntemor - o - Velho ( |modern| Portugal ) , expandi
## [doc0990] li begins in Cairo ( |modern| Egypt ) .           
## [doc0990] town of Aoudaghost ( |modern| Mauritania ) as West
## [doc0994] ) , besiege Apamea ( |modern| Syria ) .           
## [doc0996] e citizens of Tyre ( |modern| Lebanon ) revolt aga
## [doc0998]  seizes Dyrrachium ( |modern| - day Durrës in Alba
## [doc0998] side retreat villa ( |modern| - day Kyoto Prefectu
## [doc0998]   The city of Tyre ( |modern| Lebanon ) is stormed
## [doc0999] ing Samanid Empire ( |modern| Iran ) .            
## [doc1000]  dominant culture of |modern| day Puerto Rico. [ c
## [doc1000] 'Anse aux Meadows in |modern| - day Newfoundland .
## [doc1002] rid emir of Sistan ( |modern| Iran ) , is deposed 
## [doc1002] liphate of Córdoba ( |modern| Spain ) .           
## [doc1002] Duchy of Carinthia ( |modern| Austria ) - Henry is
## [doc1003] mple in Tamil Nadu ( |modern| India ) , during Cho
## [doc1003] vades Transylvania ( |modern| Romania ) and establ
## [doc1003] d parts of Moravia ( |modern| Slovakia ) .        
## [doc1004] an city of Manresa ( |modern| Spain ) .           
## [doc1004] forces near Skopje ( |modern| North Macedonia ) . 
## [doc1005] f early Lê dynasty ( |modern| Vietnam ) , precedin
## [doc1006]                      |Modern| astronomers now cons
## [doc1010] ital to Thang Long ( |modern| - day Hanoi ) .     
## [doc1013] ba in Al - Andalus ( |modern| Spain ) . [ ] [ ]   
## [doc1013] ba in Al - Andalus ( |modern| Spain ) and deposes 
## [doc1014] from Zirid dynasty ( |modern| Algeria ) .         
## [doc1014]  near Thessaloniki ( |modern| Greece ) ; local Byz
## [doc1017] Sunnis of Kairouan ( |modern| Tunisia ) revolt aga
## [doc1017] f Chola dynasty ( in |modern| India ) , conquers S
## [doc1019] itan Liao Dynasty at |modern| - day Kusong , endin
## [doc1019] itan Liao Dynasty in |modern| - day Manchuria , sa
## [doc1021] om in Al - Andalus ( |modern| Spain ) , becomes in
## [doc1021]  at Lake Palakazio , |modern| Lake Çildir , Turkey
## [doc1021] to , making Lahore ( |modern| Pakistan ) capital o
## [doc1021] re in Tripolitania ( |modern| Libya ) is seen .   
## [doc1022] orgians at Svindax ( |modern| Turkey ) .          
## [doc1022] nds to in Ifriqiya ( |modern| Tunisia ) .         
## [doc1023]  Church at Utrecht ( |modern| Netherlands ) is sev
## [doc1023] le in Al - Andalus ( |modern| Spain ) takes advant
## [doc1024] alace at Göttingen ( |modern| Germany ) .         
## [doc1024]  Iberian Peninsula ( |modern| Spain ) .           
## [doc1025] ynasty in Ifriqiya ( |modern| Tunisia ) attempts t
## [doc1028] ) conquers Castile ( |modern| Spain ) ( approximat
## [doc1030]  fort named Yuryev ( |modern| - day Tartu ) .     
## [doc1034] n battle at Geneva ( |modern| Switzerland ) .     
## [doc1034]  fleet attack Bona ( |modern| Annaba ) on Maghribi
## [doc1035] ants city of Koper ( |modern| Slovenia ) town righ
## [doc1035] lgrimage at Nicaea ( |modern| Turkey ) .          
## [doc1037] f Castile and León ( |modern| Spain ) .           
## [doc1037] Bruges in Flanders ( |modern| Belgium ) .         
## [doc1037] ies ) in Lombardia ( |modern| Italy ) .           
## [doc1039] ellouin , Normandy ( |modern| France ) .          
## [doc1042] le in Al - Andalus ( |modern| Spain ) .           
## [doc1042] ess city of Edessa ( |modern| Turkey ) , returning
## [doc1043] and conquer Qazvin ( |modern| Iran ) .            
## [doc1044]  at Bagan in Burma ( |modern| Myanmar ) .         
## [doc1047]  in Boulgarophygon ( |modern| Turkey ) , and is pu
## [doc1048] , at Kapetron ( near |modern| - day Pasinler ) .  
## [doc1048] s flee to Flanders ( |modern| Belgium ) .         
## [doc1050] f Weltenburg Abbey ( |modern| Germany ) is first m
## [doc1057]  razes Kairouan ( in |modern| Tunisia ) .         
## [doc1057] f Lamego and Viseu ( |modern| Portugal ) , from Ch
## [doc1057] ror in Paphlagonia ( |modern| Turkey ) , and start
## [doc1058] independent state in |modern| - day Morocco .     
## [doc1058] zone in Burgenland ( |modern| Austria ) .         
## [doc1059] Theme of Sebasteia ( |modern| Turkey ) .          
## [doc1061] secrated in Speyer ( |modern| Germany ) .         
## [doc1062] ounded in Affligem ( |modern| Belgium ) .         
## [doc1062]  north of Ifriqiya ( |modern| Tunisia ) .         
## [doc1062] e Almoravids overrun |modern| - day Morocco , and 
## [doc1063] orava ) is founded ( |modern| Czech Republic ) .  
## [doc1064]  Abbey at Siegburg ( |modern| Germany ) is founded
## [doc1064] set Crater Volcano ( |modern| - day Arizona ) firs
## [doc1064] rs more territory in |modern| - day Portugal and c
## [doc1065] dwin V in Flanders ( |modern| Belgium ) .         
## [doc1067] count of Thuringia ( |modern| Germany ) .         
## [doc1068] city of Hieropolis ( |modern| - day Manbij ) near 
## [doc1069] ver at Romanopolis ( |modern| Turkey ) , and captu
## [doc1074] Werra in Thuringia ( |modern| Germany ) .         
## [doc1075] salza in Thuringia ( |modern| Germany ) .         
## [doc1075] at Mt. Yongan ( near |modern| - day Pingquan ) , r
## [doc1075]  is established , in |modern| - day South Africa .
## [doc1076] s a synod in Worms ( |modern| Germany ) .         
## [doc1076] nquers West Frisia ( |modern| Netherlands ) from A
## [doc1076] er of Ghana Empire ( |modern| Mauritania ) , is be
## [doc1076] rn Chalukya Empire ( |modern| India ) .           
## [doc1077] s Sultanate of Rum ( |modern| Turkey ) .          
## [doc1077] Theme of Anatolics ( |modern| Turkey ) , are procl
## [doc1077] urch of Alexandria ( |modern| Egypt ) .           
## [doc1077]  kingdom of Duklja ( |modern| Montenegro ) .      
## [doc1078] near Mellrichstadt ( |modern| Germany ) .         
## [doc1078] thedral in Galicia ( |modern| Spain ) is construct
## [doc1078] arches upon Nicaea ( |modern| Turkey ) .          
## [doc1079] near town of Cabra ( |modern| Spain ) .           
## [doc1079]         ) as Ionia ( |modern| Turkey ) .          
## [doc1080] town of Flarchheim ( |modern| Germany ) .         
## [doc1080] zantine Asia Minor ( |modern| Turkey ) , and procl
## [doc1080] by of Iburg Castle ( |modern| Germany ) .         
## [doc1080] y Church in Scania ( |modern| Sweden ) .          
## [doc1081] to city of Avalona ( |modern| Albania ) ; are join
## [doc1081] athedral in Odense ( |modern| Denmark ) .         
## [doc1081]  ) conquers Smyrna ( |modern| - day Izmir ) and fo
## [doc1081] ces to Dyrrhachium ( |modern| - day Durrës ) , and
## [doc1082] d take Dyrrhachium ( |modern| - day Durrës ) in Il
## [doc1082] town of Hofgeismar ( |modern| Germany ) is recorde
## [doc1082] ruler of Catalonia ( |modern| Spain ) .           
## [doc1083] in Taifa of Toledo ( |modern| Spain ) .           
## [doc1084] arships in Illyria ( |modern| Albania ) , and occu
## [doc1084] eposed in Svealand ( |modern| Sweden ) .          
## [doc1084] n Kingdom in Burma ( |modern| Myanmar ) .         
## [doc1085] adajoz and Granada ( |modern| Spain ) .           
## [doc1085] dralskolan in Lund ( |modern| Sweden ) , oldest sc
## [doc1086] li Mosque in Najaf ( |modern| Iraq ) , after it wa
## [doc1086] hostage to Isfahan ( |modern| Iran ) .            
## [doc1087] his church in Myra ( |modern| Turkey ) and transpo
## [doc1090]  Hammadid Dynasty in |modern| Algeria .           
## [doc1091] ng in Al - Andalus ( |modern| Spain ) falls , when
## [doc1091] tal city of Smyrna ( |modern| - day Izmir ) .     
## [doc1091]  River , near Enos ( |modern| Turkey ) .          
## [doc1091]  's capital Medina ( |modern| - day Mdina ) .     
## [doc1094] ia in Al - Andalus ( |modern| Spain ) .           
## [doc1096] esca. [ ] Phayao , a |modern| - day province of Th
## [doc1096] nd from Al Andalus ( |modern| Spain ) .           
## [doc1096]  Valley to Cologne ( |modern| Germany ) .         
## [doc1096] e fleet to Civetot ( |modern| Turkey ) .          
## [doc1097] gn in Al - Andalus ( |modern| Spain ) .           
## [doc1097] n and Alexandretta ( |modern| Turkey ) . [ ]      
## [doc1097] ear Gvozd Mountain ( |modern| - day Petrova Gora )
## [doc1098] at Lake of Antioch ( |modern| Turkey ) .          
## [doc1099]  , emir of Tripoli ( |modern| Lebanon ) .         
## [doc1099] Carmel to Caesarea ( |modern| Israel ) , where res
## [doc1099] om Emir of Shaizar ( |modern| Syria ) , who conduc
## [doc1100] Georgen am Längsee ( |modern| Austria ) .         
## [doc1100] culture , located in |modern| - day Four Corners (
## [doc1100]  The city of Cusco ( |modern| Peru ) is founded ( 
## [doc1100] conquers Barbastro ( |modern| Spain ) from hands o
## [doc1100] h city of Timbuktu ( |modern| Mali ) north of Djen
## [doc1100] ulated settlement in |modern| - day Arizona ( Unit
## [doc1101]  Fatimids at Ramla ( |modern| Israel ) .          
## [doc1102] imid army at Ramla ( |modern| Israel ) .          
## [doc1102] n siege of Tripoli ( |modern| Lebanon ) .         
## [doc1102]  emporium in Sidon ( |modern| Lebanon ) .         
## [doc1105] 000 men ) at Artah ( |modern| - day Reyhanli ) .  
## [doc1105] take over Melitene ( |modern| Turkey ) .          
## [doc1105] ) dies in Borujerd ( |modern| Iran ) after a - yea
## [doc1106] or of Al - Andalus ( |modern| Spain ) .           
## [doc1107] hes to Dyrrhachium ( |modern| Albania ) .         
## [doc1110] uf occupy Zaragoza ( |modern| Spain ) , bringing a
## [doc1112] lzwedel in Altmark ( |modern| Germany ) is founded
## [doc1112] t way back to Acre ( |modern| Israel ) .          
## [doc1112] s far east as Nice ( |modern| France ) .          
## [doc1113] er of Khmer Empire ( |modern| Cambodia ) .        
## [doc1113] tory near Cotyaeum ( |modern| Turkey ) .          
## [doc1114] England , at Worms ( |modern| Germany ) .         
## [doc1115] in Saxony - Anhalt ( |modern| Germany ) .         
## [doc1115] ixteca Alta region ( |modern| Mexico ) .          
## [doc1115] Bursuq , at Sarmin ( |modern| Syria ) .           
## [doc1116]  I hastens to Tyre ( |modern| Lebanon ) and begins
## [doc1117]  reconquer Coimbra ( |modern| Portugal ) .        
## [doc1117] f Gabès and Mahdia ( |modern| Tunisia ) in Ifriqiy
## [doc1118] r western Anatolia ( |modern| Turkey ) .          
## [doc1120]  in Qixian Village ( |modern| - day Zhejiang ) in 
## [doc1121] s place in Córdoba ( |modern| Spain ) against ruli
## [doc1121] ellion at Hangzhou ( |modern| - day Zhejiang ) in 
## [doc1121] ted at Cluny Abbey ( |modern| France ) .          
## [doc1121] thwestern Anatolia ( |modern| Turkey ) from Seljuk
## [doc1122] gons ) near Beroia ( |modern| Bulgaria ) are defea
## [doc1123] forces near Mahdia ( |modern| Tunisia ) . [ ] [ ] 
## [doc1123] de in Al - Andalus ( |modern| Spain ) against Almo
## [doc1125] n army to Bianjing ( |modern| - day Kaifeng ) , So
## [doc1126] anada in Andalusia ( |modern| Spain ) against Almo
## [doc1127] mpleted in Bukhara ( |modern| Uzbekistan ) .      
## [doc1127] nasty ) in Lin 'an ( |modern| - day Hangzhou ) and
## [doc1128] Chramon ) , which is |modern| - day Nova Palanka .
## [doc1128] The city of Bruges ( |modern| Belgium ) is founded
## [doc1129] t is now Steinfurt ( |modern| Germany ) .         
## [doc1132] shid , near Tikrit ( |modern| Iraq ) .            
## [doc1133] es in Al - Andalus ( |modern| Spain ) , and pillag
## [doc1135] e Hammadid Emirate ( |modern| Algeria ) launches a
## [doc1135] s island of Djerba ( |modern| Tunisia ) .         
## [doc1136] The city of Béjaïa ( |modern| Algeria ) repeals a 
## [doc1136] t Qodah Darul Aman ( |modern| - day Kedah Darul Am
## [doc1136] d flees to Isfahan ( |modern| Iran ) .            
## [doc1137] iago de Compostela ( |modern| Spain ) .           
## [doc1143] ders capture Jijel ( |modern| Algeria ) .         
## [doc1144]  city of Ljubljana ( |modern| Slovenia ) is first 
## [doc1146] he city of Bryansk ( |modern| Russia ) is first me
## [doc1147] e control of Gabes ( |modern| Tunisia ) . [ ]     
## [doc1147] thern Al - Andalus ( |modern| Spain ) ; a Genoese 
## [doc1148] n region of Meknes ( |modern| Morocco ) under al -
## [doc1150] ed in Khmer Empire ( |modern| Cambodia ) .        
## [doc1150] er in Lower Saxony ( |modern| Germany ) .         
## [doc1152] in city of Nidaros ( |modern| - day Trondheim ) in
## [doc1152] Maghrib al - Awsat ( |modern| Algeria ) .         
## [doc1154] , including Annaba ( |modern| Algeria ) [ ] and Ni
## [doc1154] onghold at Granada ( |modern| Spain ) , after a si
## [doc1160] ads conquer Mahdia ( |modern| Tunisia ) from Norma
## [doc1160] pital am Semmering ( |modern| Austria ) is founded
## [doc1160] er of Khmer Empire ( |modern| Cambodia ) .        
## [doc1162] nvade Al - Andalus ( |modern| Spain ) .           
## [doc1164]  Fatimid Caliphate ( |modern| Egypt ) by Nur al - 
## [doc1165]  Iberian Peninsula ( |modern| Spain ) , in what be
## [doc1166] Bad Kleinkirchheim ( |modern| Austria ) is first m
## [doc1166] le in Braunschweig ( |modern| Germany ) .         
## [doc1167] round city of Havn ( |modern| - day Copenhagen ) a
## [doc1168] ian capital Fustat ( |modern| - day Old Cairo ) wi
## [doc1168] on island of Rügen ( |modern| Germany ) .         
## [doc1168] ing city of Albano ( |modern| Italy ) .           
## [doc1170]  Almohad Caliphate ( |modern| Morocco ) becomes la
## [doc1175] n Church in Moštre ( |modern| - day Visoko ) , is 
## [doc1175]  its peak on Luzon ( |modern| Philippines ) .     
## [doc1179]  near Litani River ( |modern| Lebanon ) .         
## [doc1180] ck near Mount Fuji ( |modern| - day Odawara ) but 
## [doc1181]  over Khmer Empire ( |modern| Cambodia ) .        
## [doc1181] ng as far as Tabuk ( |modern| Saudi Arabia ) on ro
## [doc1182] lgrade and Barancs ( |modern| - day Branicevo ) . 
## [doc1182] ear Belvoir Castle ( |modern| Israel ) .          
## [doc1187] quer city of Gabès ( |modern| Tunisia ) from Almor
## [doc1189] re to Mount Carmel ( |modern| Israel ) . [ ] Octob
## [doc1190] VI , takes Iconium ( |modern| - day Konya ) and pr
## [doc1190] River near Selucia ( |modern| - day Silifke ) in A
## [doc1191] ounds city of Bern ( |modern| Switzerland ) .     
## [doc1191]  of Taungoo region ( |modern| Myanmar ) is first r
## [doc1191] anders and Hainaut ( |modern| Belgium ) are united
## [doc1191] itorial ambitions in |modern| southeastern Turkey 
## [doc1194] on Lake Petén Itzá ( |modern| Guatemala ) .       
## [doc1200] ke cross at Bruges ( |modern| Belgium ) , and agre
## [doc1202]  Kingdom of Aragon ( |modern| Spain ) .           
## [doc1203] ef pause at Durrës ( |modern| Albania ) , fleet re
## [doc1203] tops at Negroponte ( |modern| - day Halkis ) , whe
## [doc1205]  parts of Ifriqiya ( |modern| Tunisia ) .         
## [doc1206] id Saaremaa Island ( |modern| Estonia ) , forcing 
## [doc1207] ty port of Attalia ( |modern| - day Antalya ) with
## [doc1208] y of Flanders , near |modern| - day Plovdi v , Bul
## [doc1210] wn of Ravennika in ( |modern| Greece ) , in order 
## [doc1210] ar conquers Danzig ( |modern| - day Gdansk ) on Ba
## [doc1210]  Cathedral of Tyre ( |modern| Lebanon ) .         
## [doc1211] capital of Zhongdu ( |modern| - day Beijing ) , bu
## [doc1212] in ) in Burzenland ( |modern| Romania ) as a forti
## [doc1214] capital of Zhongdu ( |modern| - day Beijing ) for 
## [doc1215] es capture Zhongdu ( |modern| - day Beijing ) .   
## [doc1216] f Vladimir- Suzdal ( |modern| Russia ) .          
## [doc1218] chlug flees south to |modern| Afghanistan , but is
## [doc1221] in moves to Parwan ( |modern| Afghanistan ) , wher
## [doc1222] tal of Firozkoh ( in |modern| - day Afghanistan ) 
## [doc1223] eper River , next to |modern| - day Zaporizhzhia (
## [doc1224] chi cross steppes of |modern| Kazakhstan , and ret
## [doc1225]  capital of Tabriz ( |modern| Iran ) .            
## [doc1227]                Ane ( |modern| Netherlands ) .     
## [doc1228] 0 men ) at Bolnisi ( |modern| Georgia ) .         
## [doc1228] had rule in Murcia ( |modern| Spain ) and acknowle
## [doc1229] tantine and Béjaïa ( |modern| Algeria ) .         
## [doc1232] l attack at Cheoin ( |modern| - day Yongin ) .    
## [doc1233]  count of Guelders ( |modern| Netherlands ) .     
## [doc1236] Kingdom ( located in |modern| Sri Lanka ) .       
## [doc1237] ks of Elblag River ( |modern| Poland ) .          
## [doc1238]  Rus ' territories ( |modern| - day Russia and Ukr
## [doc1242] abitants of Gradec ( |modern| - day Zagreb ) and S
## [doc1242] er city of Tlemcen ( |modern| Algeria ) .         
## [doc1245]  , bishop of Turku ( |modern| Finland ) , is grant
## [doc1249] te in Al - Andalus ( |modern| Spain ) .           
## [doc1250] ridge in Venice ( in |modern| - day Italy ) is con
## [doc1250]  state is founded in |modern| - day Ethiopia .    
## [doc1250] s of Strasbourg ( in |modern| - day France ) are c
## [doc1251] aunggyet in Arakan ( |modern| - day Burma ) is fou
## [doc1253] nquer Dali Kingdom ( |modern| - day Yunnan ) .    
## [doc1253] n migrates to Siam ( |modern| Thailand ) .        
## [doc1255] a found Königsberg ( |modern| - day Kaliningrad ) 
## [doc1256] dakhshan and Sindh ( |modern| Pakistan ) .        
## [doc1258]  city , Thang Long ( |modern| - day Hanoi ) , and 
## [doc1260] s out in Valais ( in |modern| - day Switzerland ) 
## [doc1261]  ambush near Anbar ( |modern| Iraq ) , on November
## [doc1262]  of Lan Na Kingdom ( |modern| Northern Thailand ) 
## [doc1264] t Fortress of Deva ( |modern| Romania ) . [ ] [ ] 
## [doc1264] inese city of Dadu ( |modern| - day Beijing ) .   
## [doc1266] ing city of Byblos ( |modern| Lebanon ) and import
## [doc1266]  capital Khanbaliq ( |modern| - day Beijing ] , se
## [doc1266]                   In |modern| - day United States 
## [doc1272] ians near Hoogwoud ( |modern| Netherlands ) .     
## [doc1273]  carved in Haghpat ( |modern| Armenia ) .         
## [doc1274] rby town of Hakata ( |modern| - day Fukuoka ) .   
## [doc1275] Taraz and Khorasan ( |modern| Afghanistan ) . [ ] 
## [doc1276] on in Al - Andalus ( |modern| Spain ) .           
## [doc1279] settles at Taungoo ( |modern| - day Myanmar ) , an
## [doc1279]  Sukhothai Kingdom ( |modern| - day Thailand ) .  
## [doc1281] capital Lamphun ( in |modern| - day Thailand ) is 
## [doc1283] nvade Khmer Empire ( |modern| Cambodia ) .        
## [doc1283] ity of Rheinfelden ( |modern| Switzerland ) , Rudo
## [doc1287] anthawaddy Kingdom ( |modern| Myanmar ) following 
## [doc1287] i of Lanna Kingdom ( |modern| Thailand ) and Ram K
## [doc1287] Kingdom of Tlemcen ( |modern| Algeria ) .         
## [doc1288] ry in Al - Andalus ( |modern| Spain ) .           
## [doc1289] galleys to Tripoli ( |modern| Lebanon ) .         
## [doc1290] astle of Körösszeg ( |modern| Romania ) .         
## [doc1291] eges to Bratislava , |modern| - day capital of Slo
## [doc1291] ar town of Klatovy ( |modern| Czech Republic ) as 
## [doc1292] ravels past Champa ( |modern| Vietnam ) and Karima
## [doc1293] eral , forerunner to |modern| Complutense Universi
## [doc1295] er of Khmer Empire ( |modern| Cambodia ) .        
## [doc1295]  ( some men ) , near |modern| - day town of Llanfa
## [doc1298] castle of Sivistan ( |modern| Pakistan ) .        
## [doc1304] th Hall , in Ypres ( |modern| Belgium ) , is compl
## [doc1307] independent parish ( |modern| Netherlands ) .     
## [doc1338]  Lake Issyk - Kul in |modern| Kyrgyzstan , accordi
## [doc1339]  battle at Jayapur ( |modern| Sumbal ) , asks her 
## [doc1341]  in river Periyar in |modern| - day southern India
## [doc1346]                      |Modern| scholars consider on
## [doc1348] t port of Melcombe ( |modern| - day Weymouth , Dor
## [doc1349] Askøy and Bjørgvin ( |modern| - day Bergen ) in No
## [doc1351] y in Sindh ( part of |modern| - day Pakistan ) bre
## [doc1351] ( Ramathibodi I ) in |modern| - day Thailand .    
## [doc1355]  ) of Tenochtitlan ( |modern| Mexico City ) , 1375
## [doc1355]  ) of Tenochtitlan ( |modern| Mexico City ) , 1375
## [doc1356] hich it remains into |modern| times .             
## [doc1357]  of Marwar ( part of |modern| - day India ) .     
## [doc1358] f Marinid dynasty in |modern| - day Morocco after 
## [doc1358]  of Deccan ( part of |modern| - day southern India
## [doc1359] Prince of Moldavia ( |modern| - day Moldova ) afte
## [doc1359] ltan of Granada ( in |modern| - day Spain ) .     
## [doc1359] Marinid dynasty , in |modern| -day Morocco .      
## [doc1359] ancestor for most of |modern| - day population of 
## [doc1360] King of Granada ( in |modern| - day Spain ) ; he i
## [doc1360] ler of Vladimir ( in |modern| - day western Russia
## [doc1361] In Marinid Empire in |modern| - day Morocco , Abu 
## [doc1362] is and Adrianopole ( |modern| - day city of Edirne
## [doc1364] ra Pradesh ( part of |modern| - day southern India
## [doc1364] r of Mewar ( part of |modern| - day western India 
## [doc1364] d by Thado Minbya in |modern| - day northern Burma
## [doc1365]        Adrianopole ( |modern| - day Edirne ) becom
## [doc1365] al ) in Granada ( in |modern| - day Spain ) .     
## [doc1365]                   In |modern| - day southern India
## [doc1366] Bahmani Sultanate in |modern| - day southern India
## [doc1367] ty of Göttingen ( in |modern| - day Germany ) on d
## [doc1367] King of Castile ( in |modern| - day Spain ) after 
## [doc1368] ds of Samarkand ( in |modern| - day Uzbekistan ) .
## [doc1368] nd - largest city in |modern| - day Albania ( at t
## [doc1368] e ruler of Tver ( in |modern| - day western Russia
## [doc1368] khothai Kingdom ( in |modern| - day northern Thail
## [doc1370] mperor of Ð<U+1EA1>i Vi<U+1EC7>t , |modern| - day Vietnam .     
## [doc1371] ing of Mong Mao ( in |modern| - day south China / 
## [doc1372] ngdom of Chuzan ( in |modern| - day southern Japan
## [doc1373] ver rule of Achaea ( |modern| - day southern Greec
## [doc1373] Kingdom of Cilicia ( |modern| - day southern Turke
## [doc1373] city of Phnom Penh ( |modern| - day capital city o
## [doc1374] layirid Sultanate in |modern| - day Iraq and weste
## [doc1374]  Prince of Taranto ( |modern| - day eastern Italy 
## [doc1374] eo on of Goryeo ( in |modern| - day Korea ) .     
## [doc1374] as ruler of Marwar ( |modern| - day Jodhpur distri
## [doc1374] nsa of Mali Empire ( |modern| - day Mali and Seneg
## [doc1375] uler ) of Moldavia ( |modern| - day Moldova & east
## [doc1377] yanagara Empire ( in |modern| - day southern India
## [doc1377] rince of Wallachia ( |modern| - day southern Roman
## [doc1378] uler of Lower Zeta ( |modern| - day Montenegro ) .
## [doc1378] s King of Mong Mao ( |modern| - day northern Myanm
## [doc1378] y at Diyarbakir , in |modern| - day southeast Turk
## [doc1378] Bahmani Sultanate in |modern| - day southern India
## [doc1379]  Sheep Empire ) , in |modern| - day Armenia .     
## [doc1380]  ) of Tenochtitlan ( |modern| Mexico City ) , 1396
## [doc1380]  ) of Tenochtitlan ( |modern| Mexico City ) , 1396
## [doc1381] Kingdom of Dali , in |modern| - day Yunnan and Gui
## [doc1381]                    A |modern| historian states Min
## [doc1384] eep Turkomans ) , in |modern| - day Armenia and no
## [doc1384] f Marinid dynasty in |modern| - day Morocco .     
## [doc1385] Estense in Ferrara ( |modern| - day Italy ) Bodiam
## [doc1386] Dan I of Wallachia ( |modern| - day southern Roman
## [doc1386] f Marinid dynasty in |modern| - day Morocco .     
## [doc1386] city of Pite<U+0219>ti , in |modern| - day Romania .     
## [doc1388] volution in Goryeo ( |modern| - day Korea ) , afte
## [doc1388]  King of Ayutthaya ( |modern| - day southern Thail
## [doc1388] nem - Bornu Empire ( |modern| - day east Chad and 
## [doc1392]  Sultan of Granada ( |modern| - day southern Spain
## [doc1392]  Afyonkarahisar ( in |modern| - day western Turkey
## [doc1395]  ) of Tenochtitlan ( |modern| Mexico City ) , 1375
## [doc1395]  ) of Tenochtitlan ( |modern| Mexico City ) , 1375
## [doc1396] cipality of Achaea ( |modern| - day Peloponnese , 
## [doc1396]          Peasants in |modern| - day provinces of H
## [doc1396] Marinid dynasty , in |modern| - day Morocco .     
## [doc1396]  as King of Aragon ( |modern| - day northeastern S
## [doc1398] of Joseon dynasty in |modern| - day Korea , follow
## [doc1398] f Marinid dynasty in |modern| - day Morocco .     
## [doc1398] r of Tr<U+1EA7>n dynasty in |modern| - day Vietnam , in f
## [doc1398] astery is founded in |modern| - day northwest Russ
## [doc1398] ave ( at Lübeck ) in |modern| - day north Germany 
## [doc1398] rsity are founded in |modern| - day Seoul .       
## [doc1398]  as King of Chuzan ( |modern| - day central Okinaw
## [doc1400]                   In |modern| - day Korea , King J
## [doc1400]          Wallachia ( |modern| -day southern Romani
## [doc1400] King of Hokuzan , in |modern| - day north Okinawa 
## [doc1402] cipality of Achaea ( |modern| - day southern Greec
## [doc1402] l confederation , in |modern| - day northern Iraq 
## [doc1402]  Melaka Darul Azim ( |modern| - day Melaka Darul A
## [doc1402]  King of Uí Maine in |modern| - day County Galway 
## [doc1417]  ) of Tenochtitlan ( |modern| Mexico City ) [ ]   
## [doc1421] sque is founded , in |modern| - day northern Ghana
## [doc1425] ler of Tizatlan ( in |modern| - day Mexico ) ( d. 
## [doc1433]                      |Modern| historians doubt its
## [doc1435] ngra dos Ruivos ( in |modern| - day Western Sahara
## [doc1443] pture city of Niš in |modern| - day Serbia ; Skand
## [doc1447] , is still extant in |modern| times .             
## [doc1450]  of Chan Chan ( near |modern| Trujillo ) , on nort
## [doc1457] uilt by Ota Dokan in |modern| - day Tokyo .       
## [doc1460] tra reaches coast of |modern| - day Sierra Leone .
## [doc1466]  ) of Tenochtitlán ( |modern| Mexico City ) , – , 
## [doc1470] ng Darul Makmur ( in |modern| - day Malaysia ) .  
## [doc1472] lave trade begins in |modern| Cameroon as Portugue
## [doc1474]  is considered first |modern| patent system . [ ] 
## [doc1476]  , forming basis for |modern| - day Spain .       
## [doc1483] uly , , according to |modern| orbital calculations
## [doc1490] hurch , Hrastovlje ( |modern| - day southwestern S
## [doc1492] of Thessaloniki ( in |modern| - day Greece ) and I
## [doc1493] e renames San Juan ( |modern| - day Puerto Rico ) 
## [doc1495]  ) of Tenochtitlan ( |modern| Mexico City ) , 1520
## [doc1495]  ) of Tenochtitlan ( |modern| Mexico City ) , 1520
## [doc1496]  ) of Tenochtitlan ( |modern| Mexico City ) , 1520
## [doc1496] ) on Hispaniola ( in |modern| - day Dominican Repu
## [doc1496]  ) of Tenochtitlan ( |modern| Mexico City ) , 1520
## [doc1497] asis for a number of |modern| currencies , includi
## [doc1498] reaches Malindi , in |modern| - day Kenya .       
## [doc1498] arrives at Calicut ( |modern| - day Kozhikode ) , 
## [doc1499] oribus rerum , first |modern| history of invention
## [doc1500] d beginning of early |modern| period .            
## [doc1502] land of Hispaniola ( |modern| - day Haiti and Domi
## [doc1505] , comprising much of |modern| - day Russia .      
## [doc1519] ets foot on beach of |modern| - day Veracruz .    
## [doc1519] Panama first observe |modern| - day Nicaragua , la
## [doc1520] xcoco ( altepetl ) ( |modern| Mexico ) ( b. ) [ ] 
## [doc1520] xcoco ( altepetl ) ( |modern| Mexico ) ( b. ) [ ] 
## [doc1523]  be establishment of |modern| Swedish nation . [ ]
## [doc1525] dro de Alvarado ( in |modern| - day Guatemala ) af
## [doc1528] land , which becomes |modern| - day Ipswich School
## [doc1539]  Battle of Chausa in |modern| - day Buxar , India 
## [doc1540] village of Mabila in |modern| - day Alabama , kill
## [doc1540]  captures Hawikuh in |modern| - day New Mexico , a
## [doc1542] shire , England , in |modern| sequence , which las
## [doc1542] e Prome Kingdom , in |modern| - day central Burma 
## [doc1545]  deposits in area of |modern| - day Bolivia .     
## [doc1545] tory of New Spain in |modern| - day Mexico , Cocol
## [doc1550] y of Valledupar , in |modern| - day Colombia .    
## [doc1550] of 60,000 Mapuche in |modern| - day Chile .       
## [doc1551] In Slovakia , Guta ( |modern| - day Kolárovo ) rec
## [doc1551] huna Wa Msalata ( in |modern| - day Libya ) .     
## [doc1552] iving both countries |modern| borders .           
## [doc1558] opric of Dorpat ( in |modern| - day Estonia ) surr
## [doc1561] z de Segura develops |modern| techniques of chess 
## [doc1565] ropean settlement in |modern| -day United States .
## [doc1566] River at Mostar ( in |modern| - day Bosnia and Her
## [doc1570] lius publishes first |modern| atlas , Theatrum Orb
## [doc1575] ri in Japan 's first |modern| battle .            
## [doc1576] ato , in New Spain ( |modern| - day Mexico ) .    
## [doc1576] ry of New Spain , in |modern| - day Mexico .      
## [doc1579]  of world , lands in |modern| - day California , w
## [doc1580] anian Commonwealth ( |modern| - day Ukraine ) by I
## [doc1582] uake : Ancuancu ( in |modern| - day La Paz Departm
## [doc1583] Gilbert , on site of |modern| - day city of St Joh
## [doc1584]        June – Walk ( |modern| -day Valka and Valga
## [doc1584]  Banks of Virginia ( |modern| - day North Carolina
## [doc1586]  and Santo Domingo ( |modern| day Dominican Republ
## [doc1587] r San Luis Obispo in |modern| - day California .  
## [doc1588] panish Netherlands ( |modern| France ) .          
## [doc1591] to Dendi province in |modern| - day Niger .       
## [doc1595] iege of Taungoo , in |modern| - day Myanmar .     
## [doc1598] fne , earliest known |modern| opera , is premièred
## [doc1599]  by capturing Pegu ( |modern| - day Bago , Myanmar
## [doc1600] ly surviving work of |modern| opera , takes place 
## [doc1600] d , and beginning of |modern| geomagnetism .      
## [doc1600]  in Bungo Province ( |modern| - day Usuki in Oita 
## [doc1602] t arrives at Achin ( |modern| - day Aceh ) , Sumat
## [doc1606] ge of St Ismail near |modern| - day Kidwelly , Car
## [doc1607]  arrives at mouth of |modern| - day Kennebec River
## [doc1607] y developed opera in |modern| - day repertoire , p
## [doc1620] ally on territory of |modern| - day Germany ) .   
## [doc1620]                   It |modern| - day appearance dat
## [doc1620]                  The |modern| violin is developed 
## [doc1622]  Battle of Mbumbi in |modern| - day Angola as part
## [doc1623] uritan settlement in |modern| - day Massachusetts 
## [doc1623] f Anjar is fought in |modern| - day Lebanon as Dru
## [doc1623] f Anjar is fought in |modern| - day Lebanon as Dru
## [doc1625]  at Elmina castle at |modern| - day Elmina , Ghana
## [doc1630] cupy a large part of |modern| - day Ukraine .     
## [doc1630]      Paramaribo ( in |modern| - day Suriname ) is 
## [doc1630] Sun Yuanhua in using |modern| cannons .           
## [doc1634] ttlement at Cochin ( |modern| - day Kochi ) on Mal
## [doc1638] se of Hara Castle in |modern| - day Minamishimabar
## [doc1638]  shogunate ( part of |modern| - day Nagasaki prefe
## [doc1639] Persia , delineating |modern| Turkey - Iran and Ir
## [doc1639]  India , so founding |modern| - day Chennai , capi
## [doc1639] real in New France ( |modern| - day Quebec ) in na
## [doc1639]  Sweden , founder of |modern| - day Wilmington ( d
## [doc1644]  Dutch East Indies ( |modern| - day Jakarta in Ind
## [doc1644]  Dutch East Indies ( |modern| - day Jakarta in Ind
## [doc1646]  of Andover Parish ( |modern| - day North Andover 
## [doc1650]            The first |modern| Palio di Siena horse
## [doc1661]            The first |modern| bank notes are issue
## [doc1663] rjeve Stijene , near |modern| town of Otocac .    
## [doc1666] Sharif of Mecca , in |modern| - day Saudi Arabia .
## [doc1666] well as resulting in |modern| definition by John O
## [doc1666] f Moldavia , part of |modern| - day Romania .     
## [doc1666] f Moldavia , part of |modern| - day Romania .     
## [doc1666] in area , located in |modern| U.S. state of New Yo
## [doc1667] aner State ( part of |modern| - day Rajasthan stat
## [doc1667] panish Netherlands ( |modern| - day Belgium ) , en
## [doc1667] hal Empire , part of |modern| - day Rajasthan stat
## [doc1667] panish Netherlands ( |modern| - day Belgium ) begi
## [doc1667]  of Ragusa ( part of |modern| - day Croatia ) kill
## [doc1668] ian city of Bombay ( |modern| - day Mumbai ) to co
## [doc1668] f Tionondogen ( near |modern| - day Palatine , New
## [doc1669] agreb , precursor to |modern| University of Zagreb
## [doc1670] ve on Petite Côte of |modern| - day Senegal .     
## [doc1670]  place in India ( in |modern| - day Maharashtra st
## [doc1670] h settlers arrive at |modern| - day U.S. state of 
## [doc1670] rolled covers all of |modern| province of Manitoba
## [doc1671] tween territories in |modern| - day Greece , with 
## [doc1671] rt and considered by |modern| scholars to be first
## [doc1673] uni , Suo Province ( |modern| - day Yamaguchi Pref
## [doc1677] panish Netherlands ( |modern| - day Belgium ) .   
## [doc1677]                   In |modern| times , island becom
## [doc1677] e Siege of Stettin ( |modern| - day Polish city of
## [doc1677] panish Netherlands ( |modern| - day Belgium ) city
## [doc1677] n city of Chigirin ( |modern| - day Chyhyryn ) and
## [doc1678] ing Philip 's War in |modern| - day U.S. state of 
## [doc1678]        The father of |modern| dentistry ( d. ) [ ]
## [doc1678]        The father of |modern| dentistry ( d. ) [ ]
## [doc1678] On island of Java in |modern| - day Indonesia , Ke
## [doc1679]                   In |modern| - day Indonesia , Tr
## [doc1680]                Fe in |modern| - day U.S. state of 
## [doc1680] r Opala Territory in |modern| - day Democratic Rep
## [doc1680] nd of Java , part of |modern| - day Indonesia ) , 
## [doc1680] panish outposts what |modern| - day U.S. state of 
## [doc1682] issippi River , near |modern| Venice , Louisiana ,
## [doc1683] dom of Tungning , in |modern| - day Taiwan and Pen
## [doc1683]  Taiwan and occupies |modern| - day Kaohsiung .   
## [doc1687] ecomes foundation of |modern| physics .           
## [doc1689]  Siege of Mainz ( in |modern| - day Rheinland - Pf
## [doc1689] Great Turkish War in |modern| - day Serbia .      
## [doc1690] y of Strasbourg ( in |modern| - day France ) , is 
## [doc1691] s , bringing most of |modern| - day Mongolia under
## [doc1696] ut miles ( km ) from |modern| Mongolain capital , 
## [doc1698]  Wallachia ( part of |modern| - day Romania ) .   
## [doc1700]  Massachusetts Bay ( |modern| - day Commonwealth o
## [doc1702]  trading post may be |modern| - day location of Vi
## [doc1702]  encompassing all of |modern| - day U.S. state of 
## [doc1703] attle of Zvolen ( in |modern| - day Slovakia ) –  
## [doc1703] e of Speyerbach ( in |modern| - day Germany ) –   
## [doc1703] e of Speyerbach ( in |modern| - day Germany ) –   
## [doc1703] attle of Zvolen ( in |modern| - day Slovakia ) –  
## [doc1704] undation sire of all |modern| racing bloodstock . 
## [doc1705]  Dutch East Indies ( |modern| - day Indonesia ) , 
## [doc1705] ss of Zoutleeuw ( in |modern| - day Belgium ) Sept
## [doc1705] auerthof , fought in |modern| - day Latvia , Swedi
## [doc1705]  city of Tienen ( in |modern| - day Belgium ) , is
## [doc1706] with a path crossing |modern| - day Spain , France
## [doc1707]  Ust - Abakanskoye ( |modern| Abakan ) .          
## [doc1709] e is first person in |modern| England executed for
## [doc1709]            The first |modern| edition of William S
## [doc1710] ding Swedish rule in |modern| Latvia .            
## [doc1710] tes , a precursor of |modern| CMYK printing proces
## [doc1711]  Poland -Lithuania ( |modern| - day Ukraine ) .   
## [doc1711] ovince of Carolina ( |modern| - day North Carolina
## [doc1711] artagena de Indias ( |modern| - day Colombia ) to 
## [doc1716] rder at Basmo , near |modern| - day town of Marker
## [doc1717] d Lodge of England , |Modern| and first Free - Mas
## [doc1720] hjahanabad , part of |modern| - day Delhi .       
## [doc1720]  – At Burhanpur ( in |modern| - day Indian state o
## [doc1721] elantan Darul Naim ( |modern| - day Kelantan Darul
## [doc1722]                      |Modern| music finds definiti
## [doc1722] to Port Roseway near |modern| Shelburne , Nova Sco
## [doc1729] ly Roman Empire ( in |modern| - day state of Hesse
## [doc1729] rth of Rio Grande in |modern| - day U.S. state of 
## [doc1729]  Fort Rosalie ( near |modern| - day Natchez , Miss
## [doc1729] rt St. Pierre ( near |modern| - day Vicksburg , Mi
## [doc1729]  Dutch East Indies ( |modern| - day Indonesia ) up
## [doc1729]  Fort Rosalie ( near |modern| - day Natchez , Miss
## [doc1730] ikes Valparaíso , in |modern| - day Chile but at t
## [doc1730] t Lydzammheid ( near |modern| - day Maputo ) is ev
## [doc1730] n southern Africa in |modern| - day Mozambique .  
## [doc1730] risoned at Küstrin ( |modern| -day Kostrzyn nad Od
## [doc1731] la for first time in |modern| era .               
## [doc1731] d in India ( part of |modern| - day states of Utta
## [doc1732]                  The |Modern| Husband premieres at
## [doc1732] nt Garden , London ( |modern| - day Royal Opera Ho
## [doc1734] strian Netherlands ( |modern| - day Belgium ) to c
## [doc1734] d cession of area of |modern| day Savannah , Georg
## [doc1734] Saint John ( part of |modern| - day U.S. Virgin Is
## [doc1736] itch trials in early |modern| period in country . 
## [doc1737]  Bengal in India and |modern| - day Bangladesh .  
## [doc1738] nada , incorporating |modern| - day Colombia , Ecu
## [doc1739] nada , incorporating |modern| - day Colombia , Ecu
## [doc1740]  located on coast of |modern| - day Nicaragua , a 
## [doc1740] ohemia , Hungary and |modern| - day Belgium ) unde
## [doc1741] fortress of Glogau ( |modern| - day Glogów in Pola
## [doc1742] and at Helsingfors ( |modern| - day Helsinki ) . [
## [doc1743] y , French father of |modern| crystallography ( d.
## [doc1744]  off of Gold Coast ( |modern| - day Ghana ) near A
## [doc1749] encompassing most of |modern| U.S. state of Ohio a
## [doc1751] iani publishes first |modern| economic analysis , 
## [doc1753] da ( which comprises |modern| - day Colombia , Ven
## [doc1753] Fort Le Boeuf ( near |modern| - day Waterford , Pe
## [doc1754] on coasts of Petén ( |modern| - day Belize ) , and
## [doc1755] ks in Algoa Bay near |modern| - day Port Elizabeth
## [doc1758] k on Fort Duquesne ( |modern| - day Pittsburgh ) i
## [doc1758]  , starting point of |modern| zoological nomenclat
## [doc1758] z de San Sabá ( near |modern| - day Menard , Texas
## [doc1759] own of Egedesminde ( |modern| Aasiaat ) is founded
## [doc1762] along border between |modern| - day Bangladesh and
## [doc1764] and Mississippi ( at |modern| - day Vicksburg , Mi
## [doc1764] ev , Galician Jewish |modern| Hebrew philologist ,
## [doc1765] een Ouiatenon ( near |modern| - day Granville , In
## [doc1766] y of Nueva Granada ; |modern| - day capital of Ecu
## [doc1768] ingdoms to establish |modern| - day Nepal ; kingdo
## [doc1768]  of Jaipur ( part of |modern| - day Indian state o
## [doc1768]  Astley stages first |modern| circus , with acroba
## [doc1768]  of Jaipur ( part of |modern| - day Indian state o
## [doc1769] st begins to explore |modern| - day Kentucky .    
## [doc1774] aims south of Ohio ( |modern| Kentucky ) to Virgin
## [doc1774] aims south of Ohio ( |modern| Kentucky ) to Virgin
## [doc1775] uthern Netherlands ( |modern| - day Belgium ) ( d.
## [doc1776] urviving building in |modern| - day city .        
## [doc1778] f national colors of |modern| Germany are present 
## [doc1780] neral of Guatemala ( |modern| - day Nicaragua ) in
## [doc1780] on San Juan River in |modern| - day Nicaragua surr
## [doc1784]  western territory ( |modern| - day Tennessee ) to
## [doc1784] Coudray , pioneer of |modern| midwifery , retires 
## [doc1786] – Columbia College ( |modern| -day Columbia Univer
## [doc1786] ch comprises area of |modern| Australia from merid
## [doc1788] own of Marietta ( in |modern| - day Ohio ) , first
## [doc1789]  be considered first |modern| chemical textbook . 
## [doc1790] estern territories ( |modern| day Tennessee ) to f
## [doc1791] ion of May , , first |modern| codified constitutio
## [doc1791] nd traveller , first |modern| lesbian ( d. ) April
## [doc1791] ans , takes place in |modern| - day Mercer County 
## [doc1791]  such legislation in |modern| Europe .            
## [doc1794] Canonsburg Academy ( |modern| - day Washington & J
## [doc1794] Canonsburg Academy ( |modern| - day Washington & J
## [doc1795] inessman ; Father of |modern| philanthropy ( d . )
## [doc1797] an Shah ( 1723– ) of |modern| Nepal ( b. )        
## [doc1797] nczi , near Rivoli ( |modern| - day Italy ) , endi
## [doc1798] f British Honduras ( |modern| - day Belize ) , a g
## [doc1798] f British Honduras ( |modern| - day Belize ) , a g
## [doc1798] en United States and |modern| - day Uruguay begins
## [doc1802] Canonsburg Academy ( |modern| -day Washington & Je
## [doc1802] Saint - Domingue , ( |modern| Haiti ) to restore c
## [doc1802] emours and Company , |modern| DuPo nt chemical com
## [doc1804]  fall in Scotland in |modern| times , falls at Hig
## [doc1805] Palace , Pressburg ( |modern| - day Bratislava ) .
## [doc1806] Washington College ( |modern| - day Washington & J
## [doc1806]  Tree in Papendorp ( |modern| - day Woodstock ) . 
## [doc1806]  Tree in Papendorp ( |modern| - day Woodstock ) . 
## [doc1810]  Cruz de Mompox , in |modern| - day Colombia , dec
## [doc1810] lty of New Granada ( |modern| - day Colombia ) , t
## [doc1810] first description of |modern| food preservation us
## [doc1811] ev , Galician Jewish |modern| Hebrew philologist ,
## [doc1811] nd Snake Rivers ( in |modern| - day Washington ) ,
## [doc1812]  Cádiz creates first |modern| Spanish constitution
## [doc1813] nchtown is fought in |modern| - day Monroe , Michi
## [doc1813] l card game , Scat ( |modern| - day Skat ) , appea
## [doc1813] pper Canada , York ( |modern| - day Toronto ) .   
## [doc1813] ish Royalist Army in |modern| - day Bexar County ,
## [doc1813] y which Persia loses |modern| - day Georgia , Dage
## [doc1814] vering nearly all of |modern| - day Argentina , Ch
## [doc1816] sland of Penang ( in |modern| - day Malaysia ) .  
## [doc1818] of Malay Peninsula ( |modern| - day Singapore ) . 
## [doc1819] east 1,543 people in |modern| - day Indian state o
## [doc1820]  Rainier erupts over |modern| - day Seattle .     
## [doc1821] tern North America , |modern| - day Alaska .      
## [doc1822]        The design of |modern| - day flag of Greece
## [doc1822] y , French father of |modern| crystallography ( b.
## [doc1822] y , French father of |modern| crystallography ( b.
## [doc1822] iantep to Antakya in |modern| Turkey and from Alep
## [doc1822] t David 's College ( |modern| - day University of 
## [doc1822] t David 's College ( |modern| - day University of 
## [doc1822] ne , a forerunner of |modern| computer , for calcu
## [doc1824] rces in Gold Coast ( |modern| - day Ghana ) , kill
## [doc1825]   The world 's first |modern| railway , Stockton a
## [doc1825]  to Panic of , first |modern| stock market crash ,
## [doc1828] an Khanate ( most of |modern| - day Nakhchivan Aut
## [doc1828] s River , comprising |modern| - day Georgia , Dage
## [doc1829] ce in London , first |modern| police force .      
## [doc1829]            The first |modern| hotel in United Stat
## [doc1831] rtsman and father of |modern| football ( d. ) Augu
## [doc1832]  ; begins history of |modern| Greece .            
## [doc1832]  founded in Canton ( |modern| day Guangzhou ) in Q
## [doc1834] anical forerunner of |modern| computer .          
## [doc1837]               Selo ( |modern| - day Pushkin ) , en
## [doc1839]      ( The father of |modern| meteorology ) ( d. )
## [doc1840] nd traveller , first |modern| lesbian ( b. )      
## [doc1840]  is founded in Edo ( |modern| - day Tokyo ) .     
## [doc1841] ka , establish first |modern| educational institut
## [doc1841] ka , establish first |modern| educational institut
## [doc1841] oys two - of villa ( |modern| - day city ) of Maya
## [doc1844] nd and Asia 's first |modern| , police force is es
## [doc1844] in Shiraz , Persia ( |modern| - day Iran ) .      
## [doc1845] ment of Kororareka ( |modern| - day Russell , New 
## [doc1847] ailway wholly within |modern| - day Denmark opens 
## [doc1848] c , and one of first |modern| democratic states in
## [doc1848]  which form basis of |modern| Hungary .           
## [doc1848] d authority to build |modern| sanitary systems .  
## [doc1851] ian Female College , |modern| - day Columbia Colle
## [doc1854] rt is established at |modern| - day site of Almaty
## [doc1855]  Victoria Falls , in |modern| - day Zambia– Zimbab
## [doc1855] sippi River opens in |modern| - day Minneapolis , 
## [doc1855] also ports of Sual ( |modern| - day Pangasinan ) a
## [doc1855] sippi River opens in |modern| - day Minneapolis , 
## [doc1856]  On Sonoita River in |modern| - day southern Arizo
## [doc1856] ricultural College ( |modern| - day University of 
## [doc1857]  Ueno region , Edo ( |modern| - day Tokyo ) in Jap
## [doc1857] st multidisciplinary |modern| university in South 
## [doc1858] s passed to create a |modern| sewage system in Lon
## [doc1858] s passed to create a |modern| sewage system in Lon
## [doc1859] cks are laid between |modern| - day locations of A
## [doc1860]  Austrian founder of |modern| political Zionism ( 
## [doc1860] y – In New Granada ( |modern| - day Colombia ) sou
## [doc1861] n Indian Territory ( |modern| - day Oklahoma ) .  
## [doc1861]            The first |modern| Welsh National Eiste
## [doc1862] dine Confederation ( |modern| - day Colombia ) , r
## [doc1862] es Lagos Island , in |modern| - day Nigeria .     
## [doc1863]  between elements of |modern| navies .            
## [doc1863]  , French founder of |modern| Olympic Games ( d. )
## [doc1863] itioner , founder of |modern| realistic acting ( d
## [doc1864]  is founded in Edo ( |modern| - day Tokyo ) , Japa
## [doc1865]  event celebrated in |modern| times each year as J
## [doc1867]                  The |modern| rose is born , with 
## [doc1868] Magnon , first early |modern| humans ( early Homo 
## [doc1868] cific Railway , near |modern| - day Sinclair , Wyo
## [doc1868] n oil ( more akin to |modern| kerosine ) ; are kil
## [doc1870] onal government , in |modern| - day Manitoba , Can
## [doc1871] mperial shrine . [ ] |Modern| neoclassical economi
## [doc1872] sun , bureaucrat and |modern| Korean businessman ,
## [doc1873] of Richmond Switch ( |modern| - day Wood River Jun
## [doc1874]                  The |modern| University of Zagreb
## [doc1875] rokers Association ( |modern| - day Bombay Stock E
## [doc1875] om Rutgers College ( |modern| - day Rutgers Univer
## [doc1876] g , in Christiania ( |modern| - day Oslo ) , Norwa
## [doc1876] one strikes coast of |modern| - day Bangladesh , k
## [doc1876] direct forerunner of |modern| Congo state ) is est
## [doc1876] hammad Ali dynasty ( |modern| - day Egypt ) .     
## [doc1876] to Incheon , port of |modern| - day Seoul ) , open
## [doc1881]  , leading figure of |modern| Chinese literature (
## [doc1881] industrial empire in |modern| times includes BMW a
## [doc1881] r Waifs and Strays ( |modern| - day The Children '
## [doc1881] inshasa ( capital of |modern| - day Democratic Rep
## [doc1881] irst conversation in |Modern| Hebrew , with friend
## [doc1882] Culture of Chicago ( |modern| - day Ethical Humani
## [doc1882] st native speaker of |Modern| Hebrew ( d. ) Itamar
## [doc1882] e of Patent Agents ( |modern| - day Chartered Inst
## [doc1882] ia ) , is founded in |modern| - day Pakistan .    
## [doc1884] in United Kingdom in |modern| times ) on March , s
## [doc1885]  in Tonkin region of |modern| - day Vietnam .     
## [doc1885]  in Tonkin region of |modern| - day Vietnam .     
## [doc1885] d as first practical |modern| bicycle . [ ] The Ho
## [doc1886]            January – |Modern| field hockey is born
## [doc1887]  ( Ukigumo ) , first |modern| novel in Japan .    
## [doc1888] edang is formed , in |modern| - day Vietnam .     
## [doc1888] edang is formed , in |modern| - day Vietnam .     
## [doc1888] od is widely used in |modern| times .             
## [doc1889]                  The |modern| - day flag of Brazil
## [doc1889] his is forerunner of |modern| pizza .             
## [doc1889]  as a predecessor to |modern| - day U.S. Public He
## [doc1891] a founding father of |modern| India and architect 
## [doc1892] at Ijebu infantry in |modern| - day Nigeria , usin
## [doc1893] am is forced to cede |modern| day Laos to France .
## [doc1893] am is forced to cede |modern| day Laos to France .
## [doc1893] l Altamirano , first |modern| Mexican novelist ( C
## [doc1894] piscopal Institute ( |modern| - day Chatham Hall )
## [doc1895] alme off Kingstown ( |modern| - day Dún Laoghaire 
## [doc1895] gby Football Union ( |modern| - day Rugby Football
## [doc1895] gby Football Union ( |modern| - day Rugby Football
## [doc1895] Kingdom of Bohemia ( |modern| - day Czech Republic
## [doc1896] mer Olympics , first |modern| Olympic Games , are 
## [doc1897] ier of British Raj ( |modern| - day Khyber Pakhtun
## [doc1897] hinese esthetician , |modern| literary , and famou
## [doc1897] ier of British Raj ( |modern| - day Khyber Pakhtun
## [doc1899] avid Hilbert creates |modern| concept of geometry 
## [doc1900] , American manager , |modern| dance publicity agen
## [doc1900]  ' Lunch makes first |modern| - day hamburger sand
## [doc1901]  Uganda Railway , in |modern| - day Kisumu , Kenya
## [doc1901] hard Fiedler invents |modern| Flamethrower , Klein
## [doc1901] 2 is significant for |modern| computers because it
## [doc1902] ro discovers gold in |modern| - day Fairbanks , Al
## [doc1903]                First |modern| World Series :      
## [doc1904]                  The |Modern| Olympic Games open i
## [doc1904] irst perfect game in |modern| era of baseball. [ ]
## [doc1905]  capture of Mukden ( |modern| - day Shenyang ) com
## [doc1905] Norway , forming two |modern| - day countries. [ ]
## [doc1905] ted at Helsingfors ( |modern| - day Helsinki ) .  
## [doc1905] y of Südwestafrika ( |modern| - day Namibia ) , or
## [doc1905] io Pagnini , Italian |modern| pentathlete ( d. ) E
## [doc1906] nstruction begins on |modern| - day Great Mosque o
## [doc1907] emist and founder of |modern| pharmacology ( d. ) 
## [doc1907]  church in Hungary ( |modern| - day Slovakia ) .  
## [doc1908]  South Tyrol , first |modern| aerial enclosed cabl
## [doc1909] ersian Oil Company ( |modern| -day BP ) is incorpo
## [doc1910] s from Christiania ( |modern| - day Oslo ) without
## [doc1910]           December – |Modern| neon lighting is fir
## [doc1910] ohn Mott , launching |modern| ecumenical movement 
## [doc1911] reates Lake Sarez in |modern| - day Tajikistan .  
## [doc1911] reates Lake Sarez in |modern| - day Tajikistan .  
## [doc1911] olia , forerunner of |modern| - day Mongolia , is 
## [doc1913]  , Czech inventor of |modern| contact lens ( d. ) 
## [doc1913]  , Czech inventor of |modern| contact lens ( d. ) 
## [doc1913] process , feeding in |modern| times about a of wor
## [doc1913] process , feeding in |modern| times about a of wor
## [doc1913] in Bengal Province ( |modern| - day Bangladesh ) .
## [doc1914] me , marking rise of |modern| celebrity .         
## [doc1914] outh - West Africa ( |modern| - day Namibia ) , wi
## [doc1914] outh - West Africa ( |modern| - day Namibia ) , wi
## [doc1915]                  The |modern| civil flag of Icelan
## [doc1915]  rule in Nyasaland ( |modern| - day Malawi ) .    
## [doc1915]                  The |modern| civil flag of Icelan
## [doc1916] vement , Wolf Cubs ( |modern| - day Cub Scouts ) .
## [doc1916] potamian campaign in |modern| - day Iraq .        
## [doc1917] omano , on border of |modern| - day Mozambique and
## [doc1917] osion at Kingsland ( |modern| - day Lyndhurst , Ne
## [doc1919] vember 28. [ ] XWA ( |modern| - day CINW ) , in Mo
## [doc1919] vember 28. [ ] XWA ( |modern| - day CINW ) , in Mo
## [doc1920] es in Léopoldville , |modern| - day Kinshasa , cap
## [doc1920] April – Wang Zigan , |modern| papercutting artist 
## [doc1922]     February 10–17 – |Modern| Art Week in São Paul
## [doc1923]  Guy Troy , American |modern| pentathlete ( d. ) M
## [doc1923] ttling boundaries of |modern| Republic of Turkey ,
## [doc1923]  Guy Troy , American |modern| pentathlete ( d. ) L
## [doc1924] essman , inventor of |modern| Artificial pacemaker
## [doc1924] essman , inventor of |modern| Artificial pacemaker
## [doc1924] ball Association and |modern| football ( b. )     
## [doc1925] elázquez , Argentine |modern| pentathlete Francisc
## [doc1925] lavi Rokka , Finnish |modern| pentathlete ( d. )  
## [doc1925]            The first |modern| performance of Claud
## [doc1925] lavi Rokka , Finnish |modern| pentathlete ( d. ) G
## [doc1926]  nearly $ billion in |modern| day ) .             
## [doc1926] ný , Czechoslovakian |modern| pentathlete ( d. )  
## [doc1926] ný , Czechoslovakian |modern| pentathlete ( d. ) A
## [doc1927]          and Rise of |Modern| America .           
## [doc1927]  Dutch East Indies ( |modern| - day Indonesia ) . 
## [doc1928] bic to Latin - based |modern| Turkish alphabet. [ 
## [doc1929] hysician , father of |modern| dental implantology 
## [doc1929] es , while Museum of |Modern| Art opened in New Yo
## [doc1929]        The latest in |modern| architecture was als
## [doc1929] nny Schmidt , Danish |modern| pentathlete Eric Car
## [doc1929] nny Schmidt , Danish |modern| pentathlete June – M
## [doc1929] ork City , Museum of |Modern| Art opened to public
## [doc1929] ork City , Museum of |Modern| Art ( MoMA ) opens t
## [doc1932] nos Bódi , Hungarian |modern| pentathlete Carlo Ma
## [doc1932] nos Bódi , Hungarian |modern| pentathlete July –  
## [doc1932] d Kingdom , creating |modern| concept of a duty of
## [doc1932] ia for first time in |modern| history .           
## [doc1932] ia for first time in |modern| history .           
## [doc1933]    The first alleged |modern| sighting of Loch Nes
## [doc1933]    The first alleged |modern| sighting of Loch Nes
## [doc1935] e destroys Quetta in |modern| - day Pakistan , kil
## [doc1935] e destroys Quetta in |modern| - day Pakistan , kil
## [doc1936]  , leading figure of |modern| Chinese literature (
## [doc1939] ree City of Danzig ( |modern| - day Gdansk , Polan
## [doc1939] and and Bessarabia ( |modern| - day Moldova ) , no
## [doc1939]  violence shelter in |modern| world [ ]           
## [doc1939] ree City of Danzig ( |modern| - day Gdansk , Polan
## [doc1941]  York station WCBW ( |modern| - day WCBS - TV ) , 
## [doc1941]  York station WCBW ( |modern| - day WCBS - TV ) , 
## [doc1941] Liljenwall , Swedish |modern| pentathlete Takehide
## [doc1941] moves to Kuibyshev ( |modern| Samara ) , but Stali
## [doc1941]  York station WCBW ( |modern| - day WCBS - TV ) , 
## [doc1943] nd Rangoon , Burma ( |modern| - day Myanmar ) ( km
## [doc1943] nd Rangoon , Burma ( |modern| - day Myanmar ) ( km
## [doc1943] uous gunnery duel in |modern| naval history .     
## [doc1945] do Olivera , Mexican |modern| pentathlete Kim Won-
## [doc1946]      : The Making of |Modern| World ( ) excerpt We
## [doc1947] word computer in its |modern| sense , referring to
## [doc1947] l also reports first |modern| so - called Men in B
## [doc1947] word computer in its |modern| sense , referring to
## [doc1947]  of color to play in |modern| professional basketb
## [doc1947]  of color to play in |modern| professional basketb
## [doc1947] l also reports first |modern| so - called Men in B
## [doc1948]  Frontier Province ( |modern| - day Khyber Pakhtun
## [doc1948] ation Theory and all |modern| digital communicatio
## [doc1950] Romanian minority in |modern| Hungary , Foaia Româ
## [doc1952]  Whiteside , British |modern| pentathlete June Lad
## [doc1952] lain Cortes , French |modern| pentathlete Li Hongz
## [doc1954] inger - songwriter ( |Modern| Talking , Blue Syste
## [doc1955] Garton Ash , English |modern| historian Nina Gunke
## [doc1956] onstrated at NARTB ( |modern| - day NAB ) conventi
## [doc1959] Guggenheim Museum of |modern| art ( designed by Fr
## [doc1959] Guggenheim Museum of |modern| art ( designed by Fr
## [doc1960]  Sudanese Republic ( |modern| - day Republic of Ma
## [doc1960] Accra , Gold Coast — |modern| - day Ghana — on Jan
## [doc1960] gust – Upper Volta ( |modern| - day Burkina Faso )
## [doc1960] Accra , Gold Coast ( |modern| - day Ghana ) .     
## [doc1960]   August – Dahomey ( |modern| - day Benin ) become
## [doc1961] This is birthdate of |modern| genetics .          
## [doc1962] .S. , giving rise to |modern| environmentalist mov
## [doc1962] right of Nyasaland ( |modern| - day Malawi ) to se
## [doc1962] ember – Tanganyika ( |modern| - day Tanzania ) bec
## [doc1965] vember In Rhodesia ( |modern| - day Zimbabwe ) , w
## [doc1965]        In Rhodesia ( |modern| - day Zimbabwe ) , w
## [doc1966] lic of Upper Volta ( |modern| - day Burkina Faso )
## [doc1967] become first team in |modern| era to win consecuti
## [doc1967] become first team in |modern| era to win consecuti
## [doc1969] Seung - hee , Korean |modern| dancer ( b. ) August
## [doc1969] ots , a milestone in |modern| gay rights movement 
## [doc1970] ne makes landfall in |modern| - day Bangladesh aro
## [doc1970] ne makes landfall in |modern| - day Bangladesh aro
## [doc1971] r of East Pakistan ( |modern| day - Bangladesh ) ,
## [doc1971] r of East Pakistan ( |modern| day - Bangladesh ) ,
## [doc1972] ecule marks birth of |modern| molecular biology me
## [doc1972] ecule marks birth of |modern| molecular biology me
## [doc1974]  in West Germany , a |modern| front - wheel drive 
## [doc1974]  in West Germany , a |modern| front - wheel drive 
## [doc1975] s of military rule , |modern| day Greece is establ
## [doc1975] its Spanish Sahara ( |modern| - day Western Sahara
## [doc1976] agreb , Yugoslavia ( |modern| - day Zagreb , Croat
## [doc1976] agreb , Yugoslavia ( |modern| - day Zagreb , Croat
## [doc1977]  , by extension , of |modern| science .           
## [doc1977]  , by extension , of |modern| science .           
## [doc1977] st storm in Athens ' |modern| history causes havoc
## [doc1978] ible translated into |modern| American English is 
## [doc1978] e , it paved way for |modern| - day State - sponso
## [doc1978] , and gives birth to |modern| day primetime soap o
## [doc1980]  BL a long - awaited |modern| competitor for likes
## [doc1980]  BL a long - awaited |modern| competitor for likes
## [doc1986]  Rome , first time a |modern| Pope has visited a s
## [doc1990] irl , becoming first |modern| head of government t
## [doc1990] irl , becoming first |modern| head of government t
## [doc1999] ficer ( Speaker ) of |modern| Scottish Parliament 
## [doc2000] rd , and Eric Kandel |Modern| history portal in po
## [doc2000] an announces it is a |modern| - day forgery in Apr
## [doc2001]  Australian , June , |Modern| history portal –    
## [doc2001] erlands became first |modern| country to legalize 
## [doc2001]  which becomes first |modern| country to legalize 
## [doc2001]  which becomes first |modern| country to legalize 
## [doc2002]  and John E. Sulston |Modern| history portal Year 
## [doc2003]                      |Modern| history portal Media
## [doc2004] Line K opens , first |modern| urban transit cable 
## [doc2005]                      |Modern| history portal Media
## [doc2007]  The i Phone , first |modern| smartphone , is rele
## [doc2007] aritable donation in |modern| history , committing
## [doc2009]       Call of Duty : |Modern| Warfare was released
## [doc2012] irst jurisdiction in |modern| world officially to 
## [doc2015] ate of any nation in |modern| history , surpassing
## [doc2017]  place of worship in |modern| history , surpassing
## [doc2017]  place of worship in |modern| history , surpassing
## [doc2018] t described as first |modern| populist government 
## [doc2018] nout in Venezuela 's |modern| democratic history s
## [doc2020]                      |Modern| Revolutionary Party 
## [doc2020]  second - largest in |modern| Russian history . [ 
## [doc2020]       Current events |Modern| history Animation An
## [doc2020]                      |Modern| Revolutionary Party 
## [doc2020] nderthal , indicates |modern| humans may have arri
## [doc2020]  second - largest in |modern| Russian history . [
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col()

get <- dsst_kwic(anno, terms = "Mongol", n = 2000000000000) %>%
  substr(2,8)
## [doc0080] n tribesmen and with |Mongols| from Siberian forest
## [doc0386] nbei tribe ( proto - |Mongol | people ) is politica
## [doc1125]           The Khamag |Mongol | , a Mongolic tribal 
## [doc1134] sugei ( Baghatur ) , |Mongol | chieftain ( d. ) Mar
## [doc1162] is Khan , founder of |Mongol | Empire ( d. ) Geoffr
## [doc1170] i ( or Mukhhulai ) , |Mongol | military leader ( d.
## [doc1171] sugei ( Baghatur ) , |Mongol | chieftain , arranges
## [doc1171] sugei ( Baghatur ) , |Mongol | chieftain ( b. )    
## [doc1175] ter ( d. ) Subutai , |Mongol | general and strategi
## [doc1182]  poet ( d. ) Jochi , |Mongol | general and son of G
## [doc1191] ine ) ( d. ) Tolui , |Mongol | general and son of G
## [doc1200]   The main rivals of |Mongol | confederation are Na
## [doc1200] e about half feuding |Mongol | clans under his lead
## [doc1201] d. ) Uriyangkhadai , |Mongol | general and son of S
## [doc1203] l ( or Wang Khan ) , |Mongol | leader [ citation ne
## [doc1205] d. ) [ ] Batu Khan , |Mongol | ruler of Golden Hord
## [doc1205] d. ) [ ] Batu Khan , |Mongol | ruler of Golden Hord
## [doc1206] i ( or Mukhali ) , a |Mongol | general in service o
## [doc1206] e of Genghis Khan of |Mongol | people – founding Mo
## [doc1206] ultai , a council of |Mongol | chiefs , tribes unde
## [doc1206]  Khan ( or Kuyuk ) , |Mongol | emperor ( d. ) April
## [doc1207] g northern border of |Mongol | Empire .            
## [doc1208]  ( d. ) Berke Khan , |Mongol | ruler of Golden Hord
## [doc1209]                  The |Mongols| besiege capital Zhon
## [doc1209]                  The |Mongols| led by Genghis Khan 
## [doc1209] uary – Möngke Khan , |Mongol | emperor ( khagan ) (
## [doc1209] isastrous and floods |Mongol | camp , forcing Mongo
## [doc1210]  agrees to submit to |Mongol | rule , he gives his 
## [doc1210]              Jochi , |Mongol | leader and eldest so
## [doc1211] his Khan summons his |Mongol | chieftains , and pre
## [doc1214]                  The |Mongols| starve city out ( in
## [doc1214] ynasty surrenders to |Mongols| under Genghis khan –
## [doc1214] paigns in Liaodong , |Mongol | general Muqali ( or 
## [doc1214]  with subjugation to |Mongol | Khan .              
## [doc1215] mber – Kublai Khan , |Mongol | emperor ( d. ) Agnes
## [doc1215]  Battle of Zhongdu , |Mongol | forces capture Zhong
## [doc1215]               June – |Mongol | conquest of Jin Chin
## [doc1217]                  The |Mongol | army under Muqali ( 
## [doc1218]  Khitai empire under |Mongol | rule . [ ]          
## [doc1218] ho hands him over to |Mongols| .                   
## [doc1219]                  The |Mongols| suffer many losses b
## [doc1219]                      |Mongol | forces under Chagata
## [doc1219] eases as a result of |Mongol | conquests .         
## [doc1219]  Meanwhile , another |Mongol | army under his secon
## [doc1219] Genghis Khan sends a |Mongol | army ( some 20,000 m
## [doc1219] q Böke ( or Buka ) , |Mongol | ruler ( khagan ) ( d
## [doc1220]  flee to India after |Mongol | invasion ( see ) .  
## [doc1220] eaders open gates to |Mongols| , but Turkish forces
## [doc1220]                      |Mongol | forces led by Genghi
## [doc1220] is pursued by 20,000 |Mongol | forces led by Subuta
## [doc1220]                  The |Mongols| have to fight for Ur
## [doc1220]                  The |Mongol | army ( some 100,000 
## [doc1221]                  The |Mongols| defeat two Georgian 
## [doc1221]             On day , |Mongols| are finally defeated
## [doc1221] ghis Khan he sends a |Mongol | army of 30,000 men ,
## [doc1221]         In October , |Mongol | army raids Georgia f
## [doc1222]  ) is destroyed , by |Mongol | Emperor Ögedei Khan 
## [doc1223]                  The |Mongol | army led by Muqali (
## [doc1223] ses under continuous |Mongol | attacks. [ ] June – 
## [doc1223]  some 20,000– 25,000 |Mongols| assemble and build a
## [doc1223] an Sea. [ ] Autumn – |Mongol | forces under Jochi ,
## [doc1223] f his plight against |Mongols| .                   
## [doc1223] successfully attacks |Mongol | vanguard and crosses
## [doc1223]                  The |Mongol | army invades Polovts
## [doc1223]     Jebe ( Arrow ) , |Mongol | general ( approximat
## [doc1223] allied army to drive |Mongols| back .              
## [doc1223] continuing to pursue |Mongols| deeper into steppes 
## [doc1223]                  The |Mongol | forces retreat towar
## [doc1223]                  The |Mongols| promptly fleeing int
## [doc1223] ed to death during a |Mongol | ' drunken feast ' , 
## [doc1223]         He defeats a |Mongol | detachment , who aba
## [doc1223] f Dnieper fall under |Mongol | control , Subutai an
## [doc1223] ere attack a part of |Mongol | advance guard .     
## [doc1223]                  The |Mongol | cavalry invades Cauc
## [doc1223] at during battle but |Mongols| pursue .            
## [doc1223]          Screened by |Mongol | forces on east bank 
## [doc1223]  revenge for killing |Mongol | ambassadors. [ ] Bat
## [doc1223] Bulgar forces ambush |Mongols| .                   
## [doc1223]  , a second group of |Mongol | ambassadors appear i
## [doc1223] y march towards main |Mongol | army .              
## [doc1223]                  But |Mongol | ambassadors are exec
## [doc1223]                  The |Mongol | generals Subutai and
## [doc1223]                  The |Mongol | army crosses Caucasu
## [doc1223]                      |Mongol | forces capture nomin
## [doc1223]                  The |Mongol | leaders Subutai and 
## [doc1223]                  The |Mongol | army under Subutai a
## [doc1224]       As a result of |Mongol | invasion in – , Kaza
## [doc1224]                  The |Mongol | army led by Subutai 
## [doc1225] s Gobi Desert with a |Mongol | army and advances so
## [doc1225] Sultanate , repels a |Mongol | attack and invades B
## [doc1225] nders ( d. ) Chabi , |Mongol | empress and wife of 
## [doc1226]  not contributing to |Mongol | invasions .         
## [doc1227] is Khan , founder of |Mongol | Empire September Lou
## [doc1227] umn – Prince Tolui , |Mongol | regent and youngest 
## [doc1227]              Jochi , |Mongol | general and son of G
## [doc1227]  ) Aju ( or Achu ) , |Mongol | military leader and 
## [doc1227]       Tolui receives |Mongol | homelands .         
## [doc1227]  Siege of Yinchuan : |Mongol | forces eliminate Wes
## [doc1227] ecomes Great Khan of |Mongol | Empire .            
## [doc1229] laimed Great Khan of |Mongol | Empire , at a Kurult
## [doc1231]      Siege of Kuju : |Mongol | forces besiege city 
## [doc1231]                  The |Mongols| are joined by Hong B
## [doc1231]                    A |Mongol | army crosses Yalu Ri
## [doc1232] s fate of falling to |Mongol | Empire .            
## [doc1232] t assassination of a |Mongol | embassy makes furthe
## [doc1232]                  The |Mongol | army ( some 50,000 w
## [doc1232]                  The |Mongol | army led by Ögedei K
## [doc1232]  quickly defeated by |Mongols| and flee in all dire
## [doc1232] d by small groups of |Mongol | cavalry on way .    
## [doc1232] y fire during Second |Mongol | invasion of Korea . 
## [doc1232] 0 men ) to intercept |Mongols| .                   
## [doc1232]                  The |Mongols| occupy much of north
## [doc1232]                      |Mongol | invasion of Korea : 
## [doc1232]              April – |Mongol | – Jin War :         
## [doc1232]                  The |Mongol | Empire concludes a p
## [doc1232] rean forces defeat a |Mongol | attack at Cheoin ( m
## [doc1233]                  The |Mongol | army led by Ögedei K
## [doc1233]                May – |Mongol | – Jin War :         
## [doc1233]                  The |Mongols| plunder city , while
## [doc1234]                  The |Mongol | army led by Ögedei K
## [doc1234]                After |Mongol | and Song forces have
## [doc1234]       [ ] February – |Mongol | – Jin War :         
## [doc1234]                      |Mongol | ruler of Ilkhanate (
## [doc1236]                      |Mongol | – Song War :        
## [doc1236] n protection against |Mongol | invaders and to repl
## [doc1236] aarin ( or Boyan ) , |Mongol | general ( d. ) Eliza
## [doc1236] ain , capitulates to |Mongols| .                   
## [doc1237]                  The |Mongol | army commanded by Ba
## [doc1237] nspeople repel first |Mongol | attacks but after da
## [doc1237] rn provinces against |Mongols| .                   
## [doc1237] ilated at Kolomna by |Mongols| .                   
## [doc1237]                      |Mongol | invasion of Kievan R
## [doc1238] ' resistance against |Mongols| .                   
## [doc1238]  village is taken by |Mongols| after days of siege 
## [doc1238]                  The |Mongols| defeat a Kievan Rus 
## [doc1238] s burnt to ground by |Mongols| ( see ) .           
## [doc1238] ian alliance against |Mongols| , but is unsuccessfu
## [doc1239] utside walls to face |Mongols| in a pitched battle 
## [doc1239] pagan nomads fleeing |Mongols| , to settle in Hunga
## [doc1239] slavl , is sacked by |Mongols| .                   
## [doc1239] , are slaughtered by |Mongol | catapults .         
## [doc1239]                  The |Mongol | invasion of Kievan R
## [doc1240] dealing with raiding |Mongols| to east to defend . 
## [doc1240] hinese catapults and |Mongols| pour into city .    
## [doc1240] lcony to shield from |Mongol | arrows , collective 
## [doc1241]  last major event in |Mongol | Invasion of Europe .
## [doc1241]                  The |Mongols| overwhelm feudal Pol
## [doc1241]                  The |Mongols| , under command of B
## [doc1241] attle of Chmielnik ( |Mongol | invasion of Poland )
## [doc1241] dei Khan , Khagan of |Mongol | Empire and successor
## [doc1241] riorities results in |Mongols| withdrawing behind r
## [doc1242]  capitulating before |Mongols| even have not reache
## [doc1242] s under Béla IV stop |Mongol | invasion in Hungary 
## [doc1242]                      |Mongol | forces led by Subuta
## [doc1243] nd become vassals of |Mongols| .                   
## [doc1245] phen of Bohemia ) to |Mongol | court at Karakorum ,
## [doc1246] ned as Great Khan of |Mongol | Empire ( which is wi
## [doc1246] d orders Eljigidei , |Mongol | viceroy of Persia , 
## [doc1248] lking in terms about |Mongol | favouritism for Chri
## [doc1248]  stay in Cyprus from |Mongol | general , Eljigidei 
## [doc1248]  Khan ( or Kuyuk ) , |Mongol | emperor ( b. )      
## [doc1248]            Subutai , |Mongol | general and military
## [doc1249] o meet Great Khan of |Mongol | Empire .            
## [doc1250] ngke Khan as khan of |Mongol | Empire in .         
## [doc1251] 251–52 – Eljigidei , |Mongol | commander of Persia 
## [doc1251]  as an ambassador to |Mongols| , meets king in Pale
## [doc1251]  Qaimish , regent of |Mongol | Empire , following h
## [doc1251]  Qaimish , regent of |Mongol | Empire , following h
## [doc1251] fourth great Khan of |Mongol | Empire. [ ] [ ]     
## [doc1252] talian chronicler of |Mongol | Empire [ ] [ ]      
## [doc1253]                      |Mongol | forces under Hulagu 
## [doc1253]                      |Mongol | forces under Kublai 
## [doc1253] l state to expanding |Mongol | Empire .            
## [doc1254] o is well aware of a |Mongol | and has no wish for 
## [doc1255] o jure ) Batu Khan , |Mongol | ruler and founder of
## [doc1255] y journey to convert |Mongols| of central and easte
## [doc1256]       [ ] December – |Mongol | forces under Hulagu 
## [doc1256]  ) Padishah Khatun , |Mongol | female ruler and wri
## [doc1256] a potential punitive |Mongol | expedition , becomes
## [doc1256]             Spring – |Mongol | forces ( some 80,000
## [doc1256] ge of Maymun - Diz : |Mongol | forces under Hulagu 
## [doc1256]                      |Mongol | forces led by Baiju 
## [doc1256] ur main divisions of |Mongol | Empire .            
## [doc1256] ber – Möngke Temür , |Mongol | ruler of Shiraz ( d.
## [doc1257] lain of Iraq , while |Mongol | forces under Hulagu 
## [doc1257]             Spring – |Mongol | forces under Uriyang
## [doc1257] rly destroyed during |Mongol | invasion of Poland .
## [doc1257] Khan ( or Sartak ) , |Mongol | ruler of Golden Hord
## [doc1257]                      |Mongol | forces move down fro
## [doc1258]                      |Mongol | forces ( some 30,000
## [doc1258]                  The |Mongols| occupy capital city 
## [doc1258] arch – Arghun Khan , |Mongol | ruler of Ilkhanate (
## [doc1258]                      |Mongol | invasions of Vietnam
## [doc1258] – Siege of Baghdad : |Mongol | forces ( some 150,00
## [doc1258] in to collapse , and |Mongols| swarm into city , on
## [doc1259] sian , Chinese , and |Mongol | records have differe
## [doc1259] rrenders to invading |Mongol | forces. [ ]         
## [doc1259] ai Khan leads second |Mongol | Golden Horde attack 
## [doc1259] ngaged in a war with |Mongols| , Song Chinese offic
## [doc1259] ust – Möngke Khan of |Mongol | Empire [ ]          
## [doc1259]  Chongqing , China , |Mongol | Great Khan , Möngke 
## [doc1259] succession crisis in |Mongol | Empire , while his b
## [doc1260]           Khutulun , |Mongol | princess and warrior
## [doc1260] : The Mamluks defeat |Mongols| , marking first deci
## [doc1260] te unknown Kitbuqa , |Mongol | military leader ( ex
## [doc1260]            Kitbuqa , |Mongol | military leader ( ex
## [doc1260] ecomes a claimant to |Mongol | Empire , after death
## [doc1260] ) [ ] [ ] Khutulun , |Mongol | princess and warrior
## [doc1261] , but is killed in a |Mongol | ambush near Anbar ( 
## [doc1261] ured along border of |Mongol | Empire .            
## [doc1262]                      |Mongol | forces under Berke K
## [doc1264] Protector of Law ) , |Mongol | prince ( d. ) Louis 
## [doc1264] and as sole ruler of |Mongol | Empire .            
## [doc1265]                      |Mongol | armies , led by Noga
## [doc1265] ary – Hulagu Khan of |Mongol | Empire ( b. ) [ ]   
## [doc1266] f Marco Polo , reach |Mongol | capital Khanbaliq ( 
## [doc1266]  Böke ( or Bukha ) , |Mongol | ruler ( khagan ) and
## [doc1266] scholars to teach in |Mongol | Empire ; however , r
## [doc1266] ation for support of |Mongol | invasion in Syria . 
## [doc1267] ing moved capital of |Mongol | Empire years prior. 
## [doc1268] ese Song dynasty and |Mongol | forces of Kublai Kha
## [doc1270] , is made capital of |Mongol | Ilkhanate Empire ( a
## [doc1271]                  The |Mongols| plunder cities of Ma
## [doc1271] er – Mahmud Ghazan , |Mongol | ruler ( d . ) Awhadi
## [doc1271]         Abaqa Khan , |Mongol | ruler of Ilkhanate ,
## [doc1271] s - ud - din Baraq , |Mongol | ruler of Chagatai Kh
## [doc1273] ng attack and routes |Mongols| .                   
## [doc1273]         [ ] August – |Mongol | forces surround cast
## [doc1274]                  The |Mongols| use bombs against Ja
## [doc1274] f Bun'ei : Forces of |Mongol | - led Yuan Dynasty o
## [doc1274] e , or divine wind – |Mongol | fleet is dashed on r
## [doc1275] rily recaptured from |Mongols| by a Nizari force un
## [doc1275]              March – |Mongol | forces ( some 200,00
## [doc1275] ghun Aqa ( Elder ) , |Mongol | nobleman ( b. ) Augu
## [doc1276] n effort to escape a |Mongol | invasion under Kubla
## [doc1276] is again captured by |Mongols| from a Nizari force 
## [doc1277] asion is repelled by |Mongol | forces , who counter
## [doc1277] ches from Syria into |Mongol | - dominated Sultanat
## [doc1277] o cope with constant |Mongol | invasions which deva
## [doc1277] ttempted invasion by |Mongol | Yuan Dynasty ( see )
## [doc1277] egrate after several |Mongol | invasions under Kubl
## [doc1277] r Sithu IV ) invades |Mongol | territory in Yunnan 
## [doc1277] d defeats plundering |Mongols| , and by autumn all 
## [doc1277] feats and overwhelms |Mongol | forces .            
## [doc1278]          Meanwhile , |Mongol | forces under control
## [doc1279] ngfan , commander of |Mongol | forces , orders Song
## [doc1279] men : Kublai Khan 's |Mongol | Yuan fleet attacks C
## [doc1279]                  The |Mongols| send fireships , but
## [doc1279]                  The |Mongol | Empire reaches it la
## [doc1279] ers are no match for |Mongols| in close combat , an
## [doc1279]                    A |Mongol | Yuan embassy , sent 
## [doc1281]             A second |Mongol | invasion of Japan is
## [doc1281]                  Two |Mongol | armies ( some 50,000
## [doc1281] d by Qalawun destroy |Mongol | center , Möngke Temü
## [doc1281]                  The |Mongol | army recrosses Euphr
## [doc1281]      March – Chabi , |Mongol | empress and wife of 
## [doc1281] Khan ( or Wuzong ) , |Mongol | emperor ( d. ) Decem
## [doc1282]  ( d. ) Özbeg Khan , |Mongol | ruler of Golden Hord
## [doc1282] p April Abaqa Khan , |Mongol | ruler of Ilkhanate (
## [doc1283]                      |Mongol | forces besiege fortr
## [doc1283] uchy of Moscow under |Mongol | occupation .        
## [doc1283] e of Th<U+1ECB> N<U+1EA1>i Bay : A |Mongol | - led Yuan expeditio
## [doc1283]                      |Mongol | invasion of Burma : 
## [doc1283]                      |Mongol | forces invade Khmer 
## [doc1284] ) August – Tekuder , |Mongol | ruler of Ilkhanate (
## [doc1284] anuary – Qonqurtai , |Mongol | nobleman and viceroy
## [doc1285] rwada Buyantu Khan , |Mongol | emperor ( d. ) May –
## [doc1285]                  The |Mongol | Golden Horde led by 
## [doc1285]  and Ð<U+1EA1>i Vi<U+1EC7>t defeat |Mongol | - led Yuan fleet on 
## [doc1285]  during battle , and |Mongol | army retreats to Chi
## [doc1286] in ( or Chingkim ) , |Mongol | prince ( b. ) Februa
## [doc1286] tun ( or Bulugan ) , |Mongol | princess June – Hugh
## [doc1286] ve been supported by |Mongol | - led Yuan Dynasty i
## [doc1286] es plans for a final |Mongol | invasion of Japan , 
## [doc1287]                      |Mongol | ruler of Ilkhanate ,
## [doc1287]  ) Aju ( or Achu ) , |Mongol | general and chancell
## [doc1287]    Battle of Pagan : |Mongol | - led Yuan forces ( 
## [doc1287]        May – Nayan , |Mongol | prince of Borjigin c
## [doc1287]                      |Mongol | invasion of Poland :
## [doc1287] o return with him to |Mongol | lands .             
## [doc1288] uppress rebellion of |Mongol | prince Nayan .      
## [doc1288] fleet of an invading |Mongol | - led Yuan expeditio
## [doc1289]  Buqa ( or Bugha ) , |Mongol | nobleman and chancel
## [doc1291] arch – Arghun Khan , |Mongol | ruler of Ilkhanate (
## [doc1291]  or Dadu of Yuan ) , |Mongol | capital of Emperor K
## [doc1292]  Kublai Khan sends a |Mongol | expeditionary force 
## [doc1293] n a major victory in |Mongol | invasion of Java , w
## [doc1293] nternal conflict and |Mongol | intervention , to de
## [doc1294] ary – Kublai Khan of |Mongol | Empire ( b. ) [ ]   
## [doc1294]  of four khanates of |Mongol | Empire ( Chagatai Kh
## [doc1295] op October – Baydu , |Mongol | ruler of Ilkhanate (
## [doc1295]   March – Gaykhatu , |Mongol | ruler of Ilkhanate (
## [doc1295]  – Bayan of Baarin , |Mongol | general ( b. )      
## [doc1295]            October – |Mongol | leader Baydu Khan is
## [doc1295]  ) Padishah Khatun , |Mongol | female ruler and wri
## [doc1298]          Some 20,000 |Mongols| are killed in ensuin
## [doc1298] r Khan , who defeats |Mongols| , on February .     
## [doc1298]                      |Mongol | invasion of India : 
## [doc1298]                      |Mongol | forces led by Qutlug
## [doc1299] i are interrupted by |Mongols| .                   
## [doc1299]                      |Mongol | ruler of Chagatai Kh
## [doc1299]                  The |Mongols| bypass villages to m
## [doc1299]                      |Mongol | forces under Ghazan 
## [doc1299] nd being a vassal to |Mongol | - led Yuan Dynasty (
## [doc1299] om raiding Gujarat , |Mongol | soldiers stage a mut
## [doc1299]  participates during |Mongol | offensive and regain
## [doc1299]             Spring – |Mongol | invasion of India : 
## [doc1299]           December – |Mongol | forces ( some 10,000
## [doc1299] t charge , attacking |Mongol | left flank , which b
## [doc1299]     At Jumna River , |Mongol | forces under Qutlugh
## [doc1300] tughtu Khan Kusala , |Mongol | emperor ( d. ) Charl
## [doc1303]  Damascus and chases |Mongols| as far as Al - Qarya
## [doc1303] der fortresses along |Mongol | routes to India. [ ]
## [doc1303]                      |Mongol | invasion of India : 
## [doc1303] ongols. [ ] Autumn – |Mongol | forces lift siege of
## [doc1303]                      |Mongol | forces appear outsid
## [doc1303] ir Muhammad defeat a |Mongol | army and Armenian al
## [doc1304] [ ] Ambassadors from |Mongol | rulers of Central As
## [doc1304] mür ( or Wenzong ) , |Mongol | emperor ( d. ) Febru
## [doc1304] cial networks across |Mongol | khanates reopen .   
## [doc1304]  May – Ghazan Khan , |Mongol | ruler of Ilkhanate (
## [doc1305]                 Many |Mongols| are taken prisoner a
## [doc1305] i Malik , to repulse |Mongols| .                   
## [doc1305]  ( or Abu Sa 'id ) , |Mongol | ruler ( d. ) August 
## [doc1305]   Battle of Amroha : |Mongol | forces ( some 30,000
## [doc1306] tress of Temple. [ ] |Mongol | invasion of India : 
## [doc1306] ls and captures many |Mongols| in pursuit .        
## [doc1306]                      |Mongol | forces invade Delhi 
## [doc1307] n ( or Chengzong ) , |Mongol | emperor [ ]         
## [doc1307]          Duwa Khan , |Mongol | ruler of Chagatai Kh
## [doc1308] I , Seljuk vassal of |Mongol | Ilkhanate , is murde
## [doc1311] Khan ( or Wuzong ) , |Mongol | ruler ( b. )        
## [doc1312] n same year , ending |Mongol | invasions of Levant 
## [doc1313] d ( or Chingsang ) , |Mongol | minister , diplomat 
## [doc1313] d ( or Chingsang ) , |Mongol | minister , diplomat 
## [doc1316] ce July – Yasokjin , |Mongol | noblewoman and queen
## [doc1316] December – Öljaitü , |Mongol | viceroy and ruler ( 
## [doc1319]       Hasan Kuchak , |Mongol | nobleman and prince 
## [doc1319]       Hasan Kuchak , |Mongol | nobleman and prince 
## [doc1320] , who manage to halt |Mongol | incursions towards s
## [doc1320] an ( or Tianshun ) , |Mongol | emperor ( d. )      
## [doc1320] mür ( or Huizong ) , |Mongol | emperor ( d. ) Octob
## [doc1320] an ( or Tianshun ) , |Mongol | emperor ( d. ) Siemo
## [doc1320] rwada Buyantu Khan , |Mongol | emperor ( b. )      
## [doc1320] ht ( b. ) Yasa 'ur , |Mongol | nobleman , prince an
## [doc1320]       Chosgi Odsir , |Mongol | monk , translator an
## [doc1320]  b. ) Chosgi Odsir , |Mongol | monk , translator an
## [doc1320] ht ( b. ) Yasa 'ur , |Mongol | nobleman , prince an
## [doc1322] our and Radnashiri , |Mongol | noblewoman and empre
## [doc1322] our and Radnashiri , |Mongol | noblewoman and empre
## [doc1322] mber – Dagi Khatun , |Mongol | noblewoman and empre
## [doc1323] ( both died fighting |Mongol | - Tatars ) ( possibl
## [doc1323] ( both died fighting |Mongol | - Tatars ) ( possibl
## [doc1329]  of Yuan dynasty and |Mongol | Empire ( b.         
## [doc1335] Sa'id Bahadur Khan , |Mongol | ruler of Ilkhanate (
## [doc1345] ultanate to west and |Mongol | Chinese to north .  
## [doc1345] ed paying tribute to |Mongols| , restored pre-1220 
## [doc1345] a remained free from |Mongol | power , with several
## [doc1345]  of dissent. [ ] The |Mongol | Empire had become fr
## [doc1345] ral divisions of old |Mongol | Empire were in a sta
## [doc1345] in following year as |Mongols| were struck with Bla
## [doc1346]              Several |Mongol | towns in Crimea are 
## [doc1346] sh nobles opposed to |Mongol | rule .              
## [doc1346] ed disintegration of |Mongol | 's domains , as well
## [doc1346] rld history , in end |Mongols| were forced to retre
## [doc1346] ting with Tartars in |Mongol | - led siege of Kaffa
## [doc1352] n Rebellions against |Mongol | - led Yuan dynasty o
## [doc1353] mür , claimant to of |Mongol | Il - Khanate in Pers
## [doc1356] city of Nanjing from |Mongol | - led Yuan dynasty i
## [doc1358]  being marched on by |Mongol | Jalayirid tribe , ru
## [doc1368] er disintegration of |Mongol | Yuan Dynasty .      
## [doc1378]  a small invasion by |Mongol | Blue Horde under Mam
## [doc1388] rakorum , capital of |Mongol | Empire .            
## [doc1399]                      |Mongol | Golden Horde forces 
## [doc1401]      March – Turko - |Mongol | emperor Timur sacks 
## [doc1410] 's campaigns against |Mongols| is launched , leadin
## [doc1464] ps ( including 1,000 |Mongol | cavalry ) to aid 160
## [doc1482]   Ivan III renounces |Mongol | Khanate rule over Ru
## [doc1490]  Bars Bolud Jinong , |Mongol | Khagan ( d. ) Argula
## [doc1490]  Bars Bolud Jinong , |Mongol | Khagan ( d. ) Argula
## [doc1531]  Bars Bolud Jinong , |Mongol | khan ( b. )         
## [doc1531]  Bars Bolud Jinong , |Mongol | khan ( b. )         
## [doc1544]                      |Mongols| burn suburbs of Peki
## [doc1560]                  The |Mongols| invade and occupy Qi
## [doc1783] is a late remnant of |Mongol | Golden Horde , is an
## [doc1891] massacres tens of of |Mongols| , before being suppr
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "purple") +
  labs(title = "The Mongols", subtitles = "Number of Wikipedia Pages of Years That Mention The Mongols For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "conquistador", n = 2000000000000) %>%
  substr(2,8)
## [doc1460] e Bastidas , Spanish |conquistador | ( d. )              
## [doc1460] ce de Leon , Spanish |conquistador | Antoine Brumel , Fle
## [doc1460] e Bastidas , Spanish |conquistador | ( d. ) Ponce de Leon
## [doc1465] de Cuéllar , Spanish |conquistador | ( d . ) Sehzade Ahme
## [doc1465] de Cuéllar , Spanish |conquistador | ( d. ) probable Gil 
## [doc1468] o de Ojeda , Spanish |conquistador | and explorer ( d. ) 
## [doc1475]  de Balboa , Spanish |conquistador | ( approximate date ;
## [doc1475]  de Balboa , Spanish |conquistador | ( approximate date ;
## [doc1485] nán Cortés , Spanish |conquistador | ( d. ) Odet de Foix 
## [doc1485] nán Cortés , Spanish |conquistador | ( d. )              
## [doc1487] de Mendoza , Spanish |conquistador | ( d. ) Michael Stife
## [doc1487] de Mendoza , Spanish |conquistador | ( d. ) Michael Stife
## [doc1489] e Grijalva , Spanish |conquistador | ( d. ) Thomas Müntze
## [doc1495] e Alvarado , Spanish |conquistador | ( d .               
## [doc1495] e Alvarado , Spanish |conquistador | ( d. ) Marie Dentièr
## [doc1497] e Sandoval , Spanish |conquistador | ( d. ) Margareta Eri
## [doc1497] e Sandoval , Spanish |conquistador | ( d. ) Margareta Eri
## [doc1497] e Valdivia , Spanish |conquistador | ( d. ) May – Wilhelm
## [doc1502] de Legazpi , Spanish |conquistador | ( d. ) Pedro Nunes ,
## [doc1502] de Legazpi , Spanish |conquistador | ( d. ) Pedro Nunes ,
## [doc1509] de Quesada , Spanish |conquistador | ( d. ) [ ]          
## [doc1510] e Coronado , Spanish |conquistador | ( d. ) probable Tull
## [doc1510] e Coronado , Spanish |conquistador | ( d. ) Jan Matsys , 
## [doc1511] de Nicuesa , Spanish |conquistador | and explorer Johanne
## [doc1511] de Nicuesa , Spanish |conquistador | and explorer Johanne
## [doc1515] o de Ojeda , Spanish |conquistador | ( b. )              
## [doc1515] o de Ojeda , Spanish |conquistador | ( b. ) probable –   
## [doc1517] de Córdoba , Spanish |conquistador | Marcus Musurus , Gre
## [doc1517] de Córdoba , Spanish |conquistador | Marcus Musurus , Gre
## [doc1519]              Spanish |conquistadors| sailing up Pacific c
## [doc1520] ts in death of about |conquistadors| , and some 2,000 of 
## [doc1520] ry against forces of |conquistador | Hernán Cortés .     
## [doc1520]  to his captivity by |conquistador | Hernán Cortés .     
## [doc1521] ce de León , Spanish |conquistador | ( b. ) August – Josq
## [doc1522]    January – Spanish |conquistador | Gil González Dávila 
## [doc1523] tín Cortés , Spanish |conquistador | ( d . ) Francisco Fo
## [doc1523] tín Cortés , Spanish |conquistador | ( d . ) Francisco Fo
## [doc1523] what is now Mexico , |conquistador | Gonzalo de Sandoval 
## [doc1524]      March – Spanish |conquistador | Pedro de Alvarado de
## [doc1524] de Cuéllar , Spanish |conquistador | ( b. )              
## [doc1524]              Spanish |conquistador | Pedro de Alvarado de
## [doc1525] s founded by Spanish |conquistador | Rodrigo de Bastidas 
## [doc1526]              Spanish |conquistadors| led by Francisco Piz
## [doc1528]   November – Spanish |conquistador | Álvar Núñez Cabeza d
## [doc1530] ate , is executed by |conquistador | Nuño de Guzmán , end
## [doc1534] sh settlers , led by |conquistador | Sebastián de Belalcá
## [doc1534] co , Peru by Spanish |conquistador | Francisco Pizarro , 
## [doc1536] eynogüelén : Spanish |conquistadors| defeat a group of Ma
## [doc1536]  garrison of Spanish |conquistadors| and Indian auxiliari
## [doc1537] de Mendoza , Spanish |conquistador | ( b. )              
## [doc1538] de Almagro , Spanish |conquistador | ( b. )              
## [doc1540] ition led by Spanish |conquistador | Hernando de Soto des
## [doc1540]       July – Spanish |conquistador | Francisco Vázquez de
## [doc1541] co Pizarro , Spanish |conquistador | ( b. c. ) [ ]       
## [doc1541] e Alvarado , Spanish |conquistador | ( b. ) August – Juan
## [doc1542] orer , navigator and |conquistador | ( b. c . )          
## [doc1547] nán Cortés , Spanish |conquistador | of Mexico ( b. ) [ ]
## [doc1549] de Salcedo , Spanish |conquistador | ( d. ) Marek Sobiesk
## [doc1553] utaro defeat Spanish |conquistadors| , and execute Pedro 
## [doc1553] e Valdivia , Spanish |conquistador | ( b. ) date unknown 
## [doc1554] e Coronado , Spanish |conquistador | ( b. c. )           
## [doc1561] e , Basque rebel and |conquistador | ( b. )              
## [doc1570]              Spanish |conquistador | Juan de Salcedo ( in
## [doc1572] de Legazpi , Spanish |conquistador | ( b . ) August Gaspa
## [doc1574] n de Goiti , Spanish |conquistador | Hans Eworth , Flemis
## [doc1582]      April – Spanish |conquistador | Hernando de Lerma fo
## [doc1608] ez de Leon , Spanish |conquistador | , explorer , man of 
## [doc1621] s founded by Spanish |conquistadors| , as San Jose de Gua
## [doc1653] n de Ursúa , Spanish |conquistador | ( d. ) February – El
## [doc1661] ez de Leon , Spanish |conquistador | , explorer , man of 
## [doc1715] n de Ursúa , Spanish |conquistador | ( b. )              
## [doc1743] n side [ ] ( Spanish |conquistadors| had seen Rockies fro
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "blue") +
  labs(title = "Conquistadors", subtitles = "Number of Wikipedia Pages of Years That Mention Conquistadors For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "localize", n = 2000000000000) %>%
  substr(2,8)
## [doc1583]  , which remained in |localized| use until .         
## [doc1584]  , which remained in |localized| use until .         
## [doc1585]  , which remained in |localized| use until .         
## [doc1586]  , which remained in |localized| use until .         
## [doc1587]  , which remained in |localized| use until .         
## [doc1588]  , which remained in |localized| use until .         
## [doc1589]  , which remained in |localized| use until .         
## [doc1590]  , which remained in |localized| use until .         
## [doc1591]  , which remained in |localized| use until .         
## [doc1592]  , which remained in |localized| use until .         
## [doc1593]  , which remained in |localized| use until .         
## [doc1594]  , which remained in |localized| use until .         
## [doc1595]  , which remained in |localized| use until .         
## [doc1596]  , which remained in |localized| use until .         
## [doc1597]  , which remained in |localized| use until .         
## [doc1598]  , which remained in |localized| use until .         
## [doc1599]  , which remained in |localized| use until .         
## [doc1600]  , which remained in |localized| use until .         
## [doc1601]  , which remained in |localized| use until .         
## [doc1602]  , which remained in |localized| use until .         
## [doc1603]  , which remained in |localized| use until .         
## [doc1604]  , which remained in |localized| use until .         
## [doc1605]  , which remained in |localized| use until .         
## [doc1606]  , which remained in |localized| use until .         
## [doc1607]  , which remained in |localized| use until .         
## [doc1608]  , which remained in |localized| use until .         
## [doc1609]  , which remained in |localized| use until .         
## [doc1610]  , which remained in |localized| use until .         
## [doc1612]  , which remained in |localized| use until .         
## [doc1613]  , which remained in |localized| use until .         
## [doc1614]  , which remained in |localized| use until .         
## [doc1615]  , which remained in |localized| use until .         
## [doc1616]  , which remained in |localized| use until .         
## [doc1617]  , which remained in |localized| use until .         
## [doc1618]  , which remained in |localized| use until .         
## [doc1619]  , which remained in |localized| use until .         
## [doc1620]  , which remained in |localized| use until .         
## [doc1621]  , which remained in |localized| use until .         
## [doc1622]  , which remained in |localized| use until .         
## [doc1623]  , which remained in |localized| use until .         
## [doc1624]  , which remained in |localized| use until .         
## [doc1625]  , which remained in |localized| use until .         
## [doc1626]  , which remained in |localized| use until .         
## [doc1627]  , which remained in |localized| use until .         
## [doc1628]  , which remained in |localized| use until .         
## [doc1629]  , which remained in |localized| use until .         
## [doc1630]  , which remained in |localized| use until .         
## [doc1631]  , which remained in |localized| use until .         
## [doc1632]  , which remained in |localized| use until .         
## [doc1634]  , which remained in |localized| use until .         
## [doc1635]  , which remained in |localized| use until .         
## [doc1636]  , which remained in |localized| use until .         
## [doc1637]  , which remained in |localized| use until .         
## [doc1638]  , which remained in |localized| use until .         
## [doc1639]  , which remained in |localized| use until .         
## [doc1640]  , which remained in |localized| use until .         
## [doc1641]  , which remained in |localized| use until .         
## [doc1642]  , which remained in |localized| use until .         
## [doc1643]  , which remained in |localized| use until .         
## [doc1644]  , which remained in |localized| use until .         
## [doc1645]  , which remained in |localized| use until .         
## [doc1646]  , which remained in |localized| use until .         
## [doc1647]  , which remained in |localized| use until .         
## [doc1648]  , which remained in |localized| use until .         
## [doc1648] e Platform , a new , |localized| system of Christian 
## [doc1649]  , which remained in |localized| use until .         
## [doc1650]  , which remained in |localized| use until .         
## [doc1651]  , which remained in |localized| use until .         
## [doc1652]  , which remained in |localized| use until .         
## [doc1653]  , which remained in |localized| use until .         
## [doc1654]  , which remained in |localized| use until .         
## [doc1655]  , which remained in |localized| use until .         
## [doc1656]  , which remained in |localized| use until .         
## [doc1657]  , which remained in |localized| use until .         
## [doc1658]  , which remained in |localized| use until .         
## [doc1659]  , which remained in |localized| use until .         
## [doc1660]  , which remained in |localized| use until .         
## [doc1661]  , which remained in |localized| use until .         
## [doc1662]  , which remained in |localized| use until .         
## [doc1663]  , which remained in |localized| use until .         
## [doc1664]  , which remained in |localized| use until .         
## [doc1665]  , which remained in |localized| use until .         
## [doc1666]  , which remained in |localized| use until .         
## [doc1667]  , which remained in |localized| use until .         
## [doc1668]  , which remained in |localized| use until .         
## [doc1669]  , which remained in |localized| use until .         
## [doc1670]  , which remained in |localized| use until .         
## [doc1671]  , which remained in |localized| use until .         
## [doc1672]  , which remained in |localized| use until .         
## [doc1673]  , which remained in |localized| use until .         
## [doc1674]  , which remained in |localized| use until .         
## [doc1675]  , which remained in |localized| use until .         
## [doc1676]  , which remained in |localized| use until .         
## [doc1677]  , which remained in |localized| use until .         
## [doc1678]  , which remained in |localized| use until .         
## [doc1679]  , which remained in |localized| use until .         
## [doc1680]  , which remained in |localized| use until .         
## [doc1681]  , which remained in |localized| use until .         
## [doc1682]  , which remained in |localized| use until .         
## [doc1683]  , which remained in |localized| use until .         
## [doc1684]  , which remained in |localized| use until .         
## [doc1685]  , which remained in |localized| use until .         
## [doc1686]  , which remained in |localized| use until .         
## [doc1687]  , which remained in |localized| use until .         
## [doc1688]  , which remained in |localized| use until .         
## [doc1689]  , which remained in |localized| use until .         
## [doc1690]  , which remained in |localized| use until .         
## [doc1691]  , which remained in |localized| use until .         
## [doc1692]  , which remained in |localized| use until .         
## [doc1693]  , which remained in |localized| use until .         
## [doc1694]  , which remained in |localized| use until .         
## [doc1695]  , which remained in |localized| use until .         
## [doc1696]  , which remained in |localized| use until .         
## [doc1697]  , which remained in |localized| use until .         
## [doc1698]  , which remained in |localized| use until .         
## [doc1699]  , which remained in |localized| use until .         
## [doc1700]  , which remained in |localized| use until .         
## [doc1701]  , which remained in |localized| use until .         
## [doc1702]  , which remained in |localized| use until .         
## [doc1703]  , which remained in |localized| use until .         
## [doc1704]  , which remained in |localized| use until .         
## [doc1705]  , which remained in |localized| use until .         
## [doc1706]  , which remained in |localized| use until .         
## [doc1707]  , which remained in |localized| use until .         
## [doc1708]  , which remained in |localized| use until .         
## [doc1709]  , which remained in |localized| use until .         
## [doc1710]  , which remained in |localized| use until .         
## [doc1711]  , which remained in |localized| use until .         
## [doc1712]  , which remained in |localized| use until .         
## [doc1713]  , which remained in |localized| use until .         
## [doc1714]  , which remained in |localized| use until .         
## [doc1715]  , which remained in |localized| use until .         
## [doc1716]  , which remained in |localized| use until .         
## [doc1717]  , which remained in |localized| use until .         
## [doc1718]  , which remained in |localized| use until .         
## [doc1719]  , which remained in |localized| use until .         
## [doc1720]  , which remained in |localized| use until .         
## [doc1721]  , which remained in |localized| use until .         
## [doc1722]  , which remained in |localized| use until .         
## [doc1723]  , which remained in |localized| use until .         
## [doc1724]  , which remained in |localized| use until .         
## [doc1725]  , which remained in |localized| use until .         
## [doc1726]  , which remained in |localized| use until .         
## [doc1727]  , which remained in |localized| use until .         
## [doc1728]  , which remained in |localized| use until .         
## [doc1729]  , which remained in |localized| use until .         
## [doc1730]  , which remained in |localized| use until .         
## [doc1731]  , which remained in |localized| use until .         
## [doc1732]  , which remained in |localized| use until .         
## [doc1733]  , which remained in |localized| use until .         
## [doc1734]  , which remained in |localized| use until .         
## [doc1735]  , which remained in |localized| use until .         
## [doc1736]  , which remained in |localized| use until .         
## [doc1737]  , which remained in |localized| use until .         
## [doc1738]  , which remained in |localized| use until .         
## [doc1739]  , which remained in |localized| use until .         
## [doc1740]  , which remained in |localized| use until .         
## [doc1741]  , which remained in |localized| use until .         
## [doc1742]  , which remained in |localized| use until .         
## [doc1743]  , which remained in |localized| use until .         
## [doc1744]  , which remained in |localized| use until .         
## [doc1745]  , which remained in |localized| use until .         
## [doc1746]  , which remained in |localized| use until .         
## [doc1747]  , which remained in |localized| use until .         
## [doc1748]  , which remained in |localized| use until .         
## [doc1749]  , which remained in |localized| use until .         
## [doc1750]  , which remained in |localized| use until .         
## [doc1751]  , which remained in |localized| use until .         
## [doc1752]  , which remained in |localized| use until .         
## [doc1753]  , which remained in |localized| use until .         
## [doc1754]  , which remained in |localized| use until .         
## [doc1755]  , which remained in |localized| use until .         
## [doc1756]  , which remained in |localized| use until .         
## [doc1757]  , which remained in |localized| use until .         
## [doc1758]  , which remained in |localized| use until .         
## [doc1759]  , which remained in |localized| use until .         
## [doc1760]  , which remained in |localized| use until .         
## [doc1761]  , which remained in |localized| use until .         
## [doc1762]  , which remained in |localized| use until .         
## [doc1763]  , which remained in |localized| use until .         
## [doc1764]  , which remained in |localized| use until .         
## [doc1765]  , which remained in |localized| use until .         
## [doc1766]  , which remained in |localized| use until .         
## [doc1767]  , which remained in |localized| use until .         
## [doc1768]  , which remained in |localized| use until .         
## [doc1769]  , which remained in |localized| use until .         
## [doc1770]  , which remained in |localized| use until .         
## [doc1771]  , which remained in |localized| use until .         
## [doc1772]  , which remained in |localized| use until .         
## [doc1773]  , which remained in |localized| use until .         
## [doc1774]  , which remained in |localized| use until .         
## [doc1775]  , which remained in |localized| use until .         
## [doc1776]  , which remained in |localized| use until .         
## [doc1777]  , which remained in |localized| use until .         
## [doc1778]  , which remained in |localized| use until .         
## [doc1779]  , which remained in |localized| use until .         
## [doc1780]  , which remained in |localized| use until .         
## [doc1781]  , which remained in |localized| use until .         
## [doc1782]  , which remained in |localized| use until .         
## [doc1783]  , which remained in |localized| use until .         
## [doc1784]  , which remained in |localized| use until .         
## [doc1785]  , which remained in |localized| use until .         
## [doc1786]  , which remained in |localized| use until .         
## [doc1787]  , which remained in |localized| use until .         
## [doc1788]  , which remained in |localized| use until .         
## [doc1789]  , which remained in |localized| use until .         
## [doc1790]  , which remained in |localized| use until .         
## [doc1791]  , which remained in |localized| use until .         
## [doc1792]  , which remained in |localized| use until .         
## [doc1793]  , which remained in |localized| use until .         
## [doc1794]  , which remained in |localized| use until .         
## [doc1795]  , which remained in |localized| use until .         
## [doc1796]  , which remained in |localized| use until .         
## [doc1797]  , which remained in |localized| use until .         
## [doc1798]  , which remained in |localized| use until .         
## [doc1799]  , which remained in |localized| use until .         
## [doc1800]  , which remained in |localized| use until .         
## [doc1801]  , which remained in |localized| use until .         
## [doc1802]  , which remained in |localized| use until .         
## [doc1803]  , which remained in |localized| use until .         
## [doc1804]  , which remained in |localized| use until .         
## [doc1805]  , which remained in |localized| use until .         
## [doc1806]  , which remained in |localized| use until .         
## [doc1807]  , which remained in |localized| use until .         
## [doc1808]  , which remained in |localized| use until .         
## [doc1808]        This causes a |localized| drop in marine air t
## [doc1808]        This causes a |localized| drop in marine air t
## [doc1809]  , which remained in |localized| use until .         
## [doc1810]  , which remained in |localized| use until .         
## [doc1811]  , which remained in |localized| use until .         
## [doc1812]  , which remained in |localized| use until .         
## [doc1813]  , which remained in |localized| use until .         
## [doc1814]  , which remained in |localized| use until .         
## [doc1815]  , which remained in |localized| use until .         
## [doc1816]  , which remained in |localized| use until .         
## [doc1817]  , which remained in |localized| use until .         
## [doc1818]  , which remained in |localized| use until .         
## [doc1819]  , which remained in |localized| use until .         
## [doc1820]  , which remained in |localized| use until .         
## [doc1821]  , which remained in |localized| use until .         
## [doc1822]  , which remained in |localized| use until .         
## [doc1823]  , which remained in |localized| use until .         
## [doc1824]  , which remained in |localized| use until .         
## [doc1825]  , which remained in |localized| use until .         
## [doc1826]  , which remained in |localized| use until .         
## [doc1827]  , which remained in |localized| use until .         
## [doc1828]  , which remained in |localized| use until .         
## [doc1829]  , which remained in |localized| use until .         
## [doc1830]  , which remained in |localized| use until .         
## [doc1831]  , which remained in |localized| use until .         
## [doc1832]  , which remained in |localized| use until .         
## [doc1833]  , which remained in |localized| use until .         
## [doc1834]  , which remained in |localized| use until .         
## [doc1835]  , which remained in |localized| use until .         
## [doc1836]  , which remained in |localized| use until .         
## [doc1837]  , which remained in |localized| use until .         
## [doc1838]  , which remained in |localized| use until .         
## [doc1839]  , which remained in |localized| use until .         
## [doc1840]  , which remained in |localized| use until .         
## [doc1841]  , which remained in |localized| use until .         
## [doc1842]  , which remained in |localized| use until .         
## [doc1843]  , which remained in |localized| use until .         
## [doc1844]  , which remained in |localized| use until .         
## [doc1845]  , which remained in |localized| use until .         
## [doc1846]  , which remained in |localized| use until .         
## [doc1847]  , which remained in |localized| use until .         
## [doc1848]  , which remained in |localized| use until .         
## [doc1849]  , which remained in |localized| use until .         
## [doc1850]  , which remained in |localized| use until .         
## [doc1851]  , which remained in |localized| use until .         
## [doc1852]  , which remained in |localized| use until .         
## [doc1853]  , which remained in |localized| use until .         
## [doc1854]  , which remained in |localized| use until .         
## [doc1855]  , which remained in |localized| use until .         
## [doc1856]  , which remained in |localized| use until .         
## [doc1857]  , which remained in |localized| use until .         
## [doc1858]  , which remained in |localized| use until .         
## [doc1859]  , which remained in |localized| use until .         
## [doc1860]  , which remained in |localized| use until .         
## [doc1861]  , which remained in |localized| use until .         
## [doc1862]  , which remained in |localized| use until .         
## [doc1863]  , which remained in |localized| use until .         
## [doc1864]  , which remained in |localized| use until .         
## [doc1865]  , which remained in |localized| use until .         
## [doc1866]  , which remained in |localized| use until .         
## [doc1867]  , which remained in |localized| use until .         
## [doc1868]  , which remained in |localized| use until .         
## [doc1869]  , which remained in |localized| use until .         
## [doc1870]  , which remained in |localized| use until .         
## [doc1871]  , which remained in |localized| use until .         
## [doc1872]  , which remained in |localized| use until .         
## [doc1873]  , which remained in |localized| use until .         
## [doc1874]  , which remained in |localized| use until .         
## [doc1875]  , which remained in |localized| use until .         
## [doc1876]  , which remained in |localized| use until .         
## [doc1877]  , which remained in |localized| use until .         
## [doc1878]  , which remained in |localized| use until .         
## [doc1879]  , which remained in |localized| use until .         
## [doc1880]  , which remained in |localized| use until .         
## [doc1881]  , which remained in |localized| use until .         
## [doc1882]  , which remained in |localized| use until .         
## [doc1883]  , which remained in |localized| use until .         
## [doc1884]  , which remained in |localized| use until .         
## [doc1885]  , which remained in |localized| use until .         
## [doc1886]  , which remained in |localized| use until .         
## [doc1887]  , which remained in |localized| use until .         
## [doc1888]  , which remained in |localized| use until .         
## [doc1889]  , which remained in |localized| use until .         
## [doc1890]  , which remained in |localized| use until .         
## [doc1891]  , which remained in |localized| use until .         
## [doc1892]  , which remained in |localized| use until .         
## [doc1893]  , which remained in |localized| use until .         
## [doc1894]  , which remained in |localized| use until .         
## [doc1895]  , which remained in |localized| use until .         
## [doc1896]  , which remained in |localized| use until .         
## [doc1897]  , which remained in |localized| use until .         
## [doc1898]  , which remained in |localized| use until .         
## [doc1899]  , which remained in |localized| use until .         
## [doc1900]  , which remained in |localized| use until .         
## [doc1901]  , which remained in |localized| use until .         
## [doc1902]  , which remained in |localized| use until .         
## [doc1903]  , which remained in |localized| use until .         
## [doc1904]  , which remained in |localized| use until .         
## [doc1905]  , which remained in |localized| use until .         
## [doc1906]  , which remained in |localized| use until .         
## [doc1907]  , which remained in |localized| use until .         
## [doc1908]  , which remained in |localized| use until .         
## [doc1909]  , which remained in |localized| use until .         
## [doc1910]  , which remained in |localized| use until .         
## [doc1911]  , which remained in |localized| use until .         
## [doc1912]  , which remained in |localized| use until .         
## [doc1913]  , which remained in |localized| use until .         
## [doc1914]  , which remained in |localized| use until .         
## [doc1915]  , which remained in |localized| use until .         
## [doc1916]  , which remained in |localized| use until .         
## [doc1917]  , which remained in |localized| use until .         
## [doc1918]  , which remained in |localized| use until .         
## [doc1919]  , which remained in |localized| use until .         
## [doc1920]  , which remained in |localized| use until .         
## [doc1921]  , which remained in |localized| use until .         
## [doc1922]  , which remained in |localized| use until .
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "pink") +
  labs(title = "Localize", subtitles = "Number of Wikipedia Pages of Years That Mention Localize For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "Charlemagne", n = 2000000000000) %>%
  substr(2,8)
## [doc0525] neral until reign of |Charlemagne| in century .        
## [doc0741]      Les Ancêtres de |Charlemagne| [ Charlemagne 's Anc
## [doc0742]                      |Charlemagne| , king and emperor o
## [doc0747] ( approximate date ) |Charlemagne| , king and emperor o
## [doc0748] ( approximate date ) |Charlemagne| , king and emperor o
## [doc0754] les ( later known as |Charlemagne| ) and Carloman , con
## [doc0758]  , brother in law of |Charlemagne| and uncle of Louis P
## [doc0767] n Hunchback , son of |Charlemagne| ( approximate date )
## [doc0768] cording to Salic law |Charlemagne| receives outer parts
## [doc0768] ues to fight against |Charlemagne| . [ ]               
## [doc0768]                      |Charlemagne| and Carloman I .    
## [doc0769] ack , first child of |Charlemagne| January – Cui Huan ,
## [doc0769]   Lupus II , fearing |Charlemagne| , turns Hunald over 
## [doc0769]                 King |Charlemagne| ( Charles Great ) be
## [doc0770]                 King |Charlemagne| signs a peace treaty
## [doc0770] in of Italy , son of |Charlemagne| ( or )              
## [doc0771]                      |Charlemagne| repudiates his Lomba
## [doc0771]  leaving his brother |Charlemagne| sole ruler of now re
## [doc0771] iderius , furious at |Charlemagne| , plans a punitive c
## [doc0772]                      |Charlemagne| devastates several m
## [doc0772]                      |Charlemagne| leads a Frankish exp
## [doc0772] ed by repudiation by |Charlemagne| of his daughter Desi
## [doc0772] les Younger , son of |Charlemagne| ( d. ) Charles Young
## [doc0773]     After scouting , |Charlemagne| attacks defenders fr
## [doc0773]        Summer – King |Charlemagne| and his uncle Bernar
## [doc0773] in of Italy , son of |Charlemagne| ( d. )              
## [doc0773] of friendship toward |Charlemagne| ( approximate date )
## [doc0773]                      |Charlemagne| besieges Pavia , whi
## [doc0773] on forces seize upon |Charlemagne| 's preoccupation wit
## [doc0774]                      |Charlemagne| hurriedly returns to
## [doc0774]                      |Charlemagne| annexes northern Ita
## [doc0774]                      |Charlemagne| puts down immediate 
## [doc0774]                      |Charlemagne| visits Rome ; he con
## [doc0774]                 King |Charlemagne| conquers Lombard Kin
## [doc0775] capes . [ ] Autumn – |Charlemagne| retakes Hellweg ( ma
## [doc0775]    Saxon Wars : King |Charlemagne| holds a major assemb
## [doc0775]                      |Charlemagne| claims victory , but
## [doc0775] incess , daughter of |Charlemagne| ( or )              
## [doc0776]                      |Charlemagne| hurriedly returns fr
## [doc0776] guard . [ ] [ ] King |Charlemagne| spends Easter in Tre
## [doc0776] o submit formally to |Charlemagne| .                   
## [doc0777]                      |Charlemagne| receives a request f
## [doc0777]                      |Charlemagne| spends Easter in Nij
## [doc0778] sigoths ) under King |Charlemagne| invades Al - Andalus
## [doc0778]                      |Charlemagne| is defeated by Basqu
## [doc0778] incess , daughter of |Charlemagne| ( or ) Xian Zong , e
## [doc0779]                      |Charlemagne| crosses Weser , Oker
## [doc0779]                      |Charlemagne| writes a letter to h
## [doc0779]    Saxon Wars : King |Charlemagne| assembles a Frankish
## [doc0780] lace , is founded by |Charlemagne| ( approximate date )
## [doc0780] e , queen consort of |Charlemagne| ( b. c.742 )        
## [doc0780]                      |Charlemagne| decrees death penalt
## [doc0781]                 King |Charlemagne| has his son Carloman
## [doc0781]                      |Charlemagne| meets Alcuin , Anglo
## [doc0781]                      |Charlemagne| defines Papal territ
## [doc0782]                      |Charlemagne| marches north , down
## [doc0782]             Autumn – |Charlemagne| returns from his cam
## [doc0782]     The Franks under |Charlemagne| are defeated by Saxo
## [doc0782] otrude , daughter of |Charlemagne| ; Irene sends a scho
## [doc0782]                      |Charlemagne| executes 4,500 rebel
## [doc0782]                      |Charlemagne| summons Alcuin , Ang
## [doc0782]                      |Charlemagne| sends a punitive exp
## [doc0783]                      |Charlemagne| defeats Saxon rebels
## [doc0783]                      |Charlemagne| marries Fastrada , -
## [doc0783] d , queen consort of |Charlemagne| ( b. )              
## [doc0783] egard , wife of King |Charlemagne| , dies in childbirth
## [doc0784]  Bad weather hinders |Charlemagne| 's winter campaign i
## [doc0784]                      |Charlemagne| himself takes part i
## [doc0784] abbess , daughter of |Charlemagne| ( approximate date )
## [doc0784]                      |Charlemagne| begins a campaign in
## [doc0784]                      |Charlemagne| returns to Eresburg 
## [doc0785] lity swear fealty to |Charlemagne| .                   
## [doc0785]                      |Charlemagne| returns to his palac
## [doc0785]                      |Charlemagne| suppresses a rebelli
## [doc0785]                      |Charlemagne| summons a major asse
## [doc0785]  , flees to court of |Charlemagne| .                   
## [doc0786]  settles at court of |Charlemagne| , and learns arts of
## [doc0786] les Younger , son of |Charlemagne| and ruler of Aquitai
## [doc0787] e , daughter of King |Charlemagne| .                   
## [doc0788] les Younger ( son of |Charlemagne| ) at Benevento ( Ita
## [doc0788]                 King |Charlemagne| conquers Bavaria , a
## [doc0789]                      |Charlemagne| founds town of Herfo
## [doc0789]                      |Charlemagne| issues Admonitio gen
## [doc0789]                 King |Charlemagne| crosses Elbe River w
## [doc0790] ingian court of King |Charlemagne| in Aachen , he has e
## [doc0790] us palatii ) of King |Charlemagne| , is made abbot of S
## [doc0791]                 King |Charlemagne| assembles a Frankish
## [doc0791]                      |Charlemagne| loses most of his ri
## [doc0792] taly and son of King |Charlemagne| , continues war , an
## [doc0792]  nobles plan to kill |Charlemagne| , but conspiracy is 
## [doc0792]                      |Charlemagne| banishes his oldest 
## [doc0793]                      |Charlemagne| 's son , Pepin of It
## [doc0793]                 King |Charlemagne| orders a kilometre l
## [doc0793] risians revolt , and |Charlemagne| deports Saxon famili
## [doc0794]  of Frankfurt : King |Charlemagne| calls for a church m
## [doc0794]                      |Charlemagne| consoles himself wit
## [doc0794]      Luitgard shares |Charlemagne| 's interest in liber
## [doc0794]                 King |Charlemagne| abandons his channel
## [doc0794] n Fastrada , wife of |Charlemagne| , dies in Frankfurt 
## [doc0794] ing Louis I ( son of |Charlemagne| ) , age , marries Er
## [doc0795]                      |Charlemagne| creates Hispanic Mar
## [doc0795] iplomatic gifts from |Charlemagne| .                   
## [doc0795]                 King |Charlemagne| leads a Frankish exp
## [doc0796] g Offa of Mercia and |Charlemagne| seal a trading agree
## [doc0796]                      |Charlemagne| wins a major victory
## [doc0796]             [ ] King |Charlemagne| organizes an invasio
## [doc0796] ppointed as abbot by |Charlemagne| , who puts him in ch
## [doc0797]                 King |Charlemagne| issues Capitulare Sa
## [doc0797]                      |Charlemagne| invades northern Sax
## [doc0798]  of Bornhöved : King |Charlemagne| forms an alliance wi
## [doc0798] s Younger , a son of |Charlemagne| , conquers Corsica a
## [doc0798]    He becomes one of |Charlemagne| 's favoured .       
## [doc0799] ees to court of King |Charlemagne| at Paderborn ( moder
## [doc0800] sh queen and wife of |Charlemagne| Vatsraja , king of G
## [doc0800]           December – |Charlemagne| , king of Franks , i
## [doc0801]              Emperor |Charlemagne| formally cedes Norda
## [doc0801]  illegitimate son of |Charlemagne| Al - Kindi , Muslim 
## [doc0801] Louis Pious , son of |Charlemagne| , captures Barcelona
## [doc0802]  illegitimate son of |Charlemagne| ( d. ) Ono no Takamu
## [doc0802] of Saxons by emperor |Charlemagne| . [ ] Al - Andalus :
## [doc0802] he flees to court of |Charlemagne| , who accepts a port
## [doc0803] ors Nikephoros I and |Charlemagne| settle imperial boun
## [doc0804] ishop and advisor to |Charlemagne| October –           
## [doc0804] abrück is founded by |Charlemagne| ( oldest school in G
## [doc0804]              Emperor |Charlemagne| finishes conquest of
## [doc0804] in of Italy , son of |Charlemagne| .                   
## [doc0805] German , grandson of |Charlemagne| and first East frank
## [doc0805] nhalt ) , founded by |Charlemagne| , is made .         
## [doc0805] ger , son of emperor |Charlemagne| , defeat Slavs near 
## [doc0806]              Emperor |Charlemagne| divides Frankish Emp
## [doc0806] to Frankish court of |Charlemagne| , and later visits P
## [doc0808] om , with support of |Charlemagne| and Pope Leo III .  
## [doc0808]              Emperor |Charlemagne| gives orders to cons
## [doc0809] s ( a son of emperor |Charlemagne| ) , and remains a Fr
## [doc0810]                      |Charlemagne| recognises Byzantine
## [doc0810] hority of his father |Charlemagne| , who proceeds to ta
## [doc0810] gotiate a peace with |Charlemagne| .                   
## [doc0810] incess , daughter of |Charlemagne| Thrasco , Obotrite p
## [doc0810] in of Italy , son of |Charlemagne| Æthelburh , Anglo - 
## [doc0811] les Younger , son of |Charlemagne| Li Fan , chancellor 
## [doc0811]  treaty with Emperor |Charlemagne| in present - day Ren
## [doc0811] n Hunchback , son of |Charlemagne|
## [doc0812] nks , and recognizes |Charlemagne| as emperor ( basileu
## [doc0812]                      |Charlemagne| conquers Catalonia ,
## [doc0812]                      |Charlemagne| issues Capitulare de
## [doc0813] ks , with his father |Charlemagne| .                   
## [doc0814] sty ( d. ) January – |Charlemagne| , king and emperor o
## [doc0814]                      |Charlemagne| dies of pleurisy in 
## [doc0814]                      |Charlemagne| is succeeded by his 
## [doc0816] Louis Pious ( son of |Charlemagne| ) is crowned emperor
## [doc0829] er of former emperor |Charlemagne| ( approximate date )
## [doc0834] or of former emperor |Charlemagne| , dies at Fontenelle
## [doc0839] cessor to his father |Charlemagne| , consents to divisi
## [doc0839] German , grandson of |Charlemagne| , invades Swabia .  
## [doc0840]  territories of late |Charlemagne| .                   
## [doc0842] ed himself with late |Charlemagne| .                   
## [doc0844]  illegitimate son of |Charlemagne| ( b. )              
## [doc0853] abbess , daughter of |Charlemagne| ( or )              
## [doc0855]  illegitimate son of |Charlemagne| ( b. )              
## [doc0936] ing to be crowned in |Charlemagne| 's former capital of
## [doc1001] ly Roman Emperor has |Charlemagne| 's vault opened at A
## [doc1002] al alongside body of |Charlemagne| .                   
## [doc1110] urch ( since time of |Charlemagne| ) .                 
## [doc1203]  ) Peter II ( Little |Charlemagne| ) , count of Savoy (
## [doc1258]      Louis , heir of |Charlemagne| , formally renounces
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "dark blue") +
  labs(title = "Charlemagne", subtitles = "Number of Wikipedia Pages of Years That Mention Charlemagne For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "Architecture", n = 2000000000000) %>%
  substr(2,8)
## [doc1300] on of a New European |Architecture| ( Architectura Medii
## [doc1401]                      |Architecture| Art Political entiti
## [doc1402]                      |Architecture| Art Political entiti
## [doc1403]                      |Architecture| Art Political entiti
## [doc1404]                      |Architecture| Art Political entiti
## [doc1405]                      |Architecture| Art Political entiti
## [doc1406]                      |Architecture| Art Political entiti
## [doc1407]                      |Architecture| Art Political entiti
## [doc1408]                      |Architecture| Art Political entiti
## [doc1409]                      |Architecture| Art Political entiti
## [doc1410]                      |Architecture| Art Political entiti
## [doc1411]                      |Architecture| Art Political entiti
## [doc1412]                      |Architecture| Art Political entiti
## [doc1413]                      |Architecture| Art Political entiti
## [doc1414]                      |Architecture| Art Political entiti
## [doc1415]                      |Architecture| Art Political entiti
## [doc1416]                      |Architecture| Art Political entiti
## [doc1417]                      |Architecture| Art Political entiti
## [doc1418]                      |Architecture| Art Political entiti
## [doc1419]                      |Architecture| Art Political entiti
## [doc1420]                      |Architecture| Art Political entiti
## [doc1421]                      |Architecture| Art Political entiti
## [doc1422]                      |Architecture| Art Political entiti
## [doc1423]                      |Architecture| Art Political entiti
## [doc1424]                      |Architecture| Art Political entiti
## [doc1425]                      |Architecture| Art Political entiti
## [doc1426]                      |Architecture| Art Political entiti
## [doc1427]                      |Architecture| Art Political entiti
## [doc1428]                      |Architecture| Art Political entiti
## [doc1429]                      |Architecture| Art Political entiti
## [doc1430]                      |Architecture| Art Political entiti
## [doc1431]                      |Architecture| Art Political entiti
## [doc1432]                      |Architecture| Art Political entiti
## [doc1433]                      |Architecture| Art Political entiti
## [doc1434]                      |Architecture| Art Political entiti
## [doc1435]                      |Architecture| Art Political entiti
## [doc1436]                      |Architecture| Art Political entiti
## [doc1437]                      |Architecture| Art Political entiti
## [doc1438]                      |Architecture| Art Political entiti
## [doc1439]                      |Architecture| Art Political entiti
## [doc1440]                      |Architecture| Art Political entiti
## [doc1441]                      |Architecture| Art Political entiti
## [doc1442]                      |Architecture| Art Political entiti
## [doc1443]                      |Architecture| Art Political entiti
## [doc1444]                      |Architecture| Art Political entiti
## [doc1445]                      |Architecture| Art Political entiti
## [doc1446]                      |Architecture| Art Political entiti
## [doc1447]                      |Architecture| Art Political entiti
## [doc1448]                      |Architecture| Art Political entiti
## [doc1449]                      |Architecture| Art Political entiti
## [doc1450]                      |Architecture| Art Political entiti
## [doc1451]                      |Architecture| Art Political entiti
## [doc1452]                      |Architecture| Art Political entiti
## [doc1453]                      |Architecture| Art Political entiti
## [doc1454]                      |Architecture| Art Political entiti
## [doc1455]                      |Architecture| Art Political entiti
## [doc1456]                      |Architecture| Art Political entiti
## [doc1457]                      |Architecture| Art Political entiti
## [doc1458]                      |Architecture| Art Political entiti
## [doc1459]                      |Architecture| Art Political entiti
## [doc1460]                      |Architecture| Art Political entiti
## [doc1461]                      |Architecture| Art Political entiti
## [doc1462]                      |Architecture| Art Political entiti
## [doc1463]                      |Architecture| Art Political entiti
## [doc1464]                      |Architecture| Art Political entiti
## [doc1465]                      |Architecture| Art Political entiti
## [doc1466]                      |Architecture| Art Political entiti
## [doc1467]                      |Architecture| Art Political entiti
## [doc1468]                      |Architecture| Art Political entiti
## [doc1469]                      |Architecture| Art Political entiti
## [doc1470]                      |Architecture| Art Political entiti
## [doc1471]                      |Architecture| Art Political entiti
## [doc1472]                      |Architecture| Art Political entiti
## [doc1473]                      |Architecture| Art Political entiti
## [doc1474]                      |Architecture| Art Political entiti
## [doc1475]                      |Architecture| Art Political entiti
## [doc1476]                      |Architecture| Art Political entiti
## [doc1477]                      |Architecture| Art Political entiti
## [doc1478]                      |Architecture| Art Political entiti
## [doc1479]                      |Architecture| Art Political entiti
## [doc1480]                      |Architecture| Art Political entiti
## [doc1481]                      |Architecture| Art Political entiti
## [doc1482]                      |Architecture| Art Political entiti
## [doc1483]                      |Architecture| Art Political entiti
## [doc1484]                      |Architecture| Art Political entiti
## [doc1485]                      |Architecture| Art Political entiti
## [doc1486]                      |Architecture| Art Political entiti
## [doc1487]                      |Architecture| Art Political entiti
## [doc1488]                      |Architecture| Art Political entiti
## [doc1489]                      |Architecture| Art Political entiti
## [doc1490]                      |Architecture| Art Political entiti
## [doc1491]                      |Architecture| Art Political entiti
## [doc1492]                      |Architecture| Art Political entiti
## [doc1493]                      |Architecture| Art Political entiti
## [doc1494]                      |Architecture| Art Political entiti
## [doc1495]                      |Architecture| Art Political entiti
## [doc1496]                      |Architecture| Art Political entiti
## [doc1497]                      |Architecture| Art Political entiti
## [doc1498]                      |Architecture| Art Political entiti
## [doc1499]                      |Architecture| Art Political entiti
## [doc1500]                      |Architecture| Art Political entiti
## [doc1501]                      |Architecture| Art Literature Music
## [doc1502]                      |Architecture| Art Literature Music
## [doc1503]                      |Architecture| Art Literature Music
## [doc1504]                      |Architecture| Art Literature Music
## [doc1505]                      |Architecture| Art Literature Music
## [doc1506]                      |Architecture| Art Literature Music
## [doc1507]                      |Architecture| Art Literature Music
## [doc1508]                      |Architecture| Art Literature Music
## [doc1509]                      |Architecture| Art Literature Music
## [doc1510]                      |Architecture| Art Literature Music
## [doc1511]                      |Architecture| Art Literature Music
## [doc1512]                      |Architecture| Art Literature Music
## [doc1513]                      |Architecture| Art Literature Music
## [doc1514]                      |Architecture| Art Literature Music
## [doc1515]                      |Architecture| Art Literature Music
## [doc1516]                      |Architecture| Art Literature Music
## [doc1517]                      |Architecture| Art Literature Music
## [doc1518]                      |Architecture| Art Literature Music
## [doc1519]                      |Architecture| Art Literature Music
## [doc1520]                      |Architecture| Art Literature Music
## [doc1521]                      |Architecture| Art Literature Music
## [doc1522]                      |Architecture| Art Literature Music
## [doc1523]                      |Architecture| Art Literature Music
## [doc1524]                      |Architecture| Art Literature Music
## [doc1525]                      |Architecture| Art Literature Music
## [doc1526]                      |Architecture| Art Literature Music
## [doc1527]                      |Architecture| Art Literature Music
## [doc1528]                      |Architecture| Art Literature Music
## [doc1529]                      |Architecture| Art Literature Music
## [doc1530]                      |Architecture| Art Literature Music
## [doc1531]                      |Architecture| Art Literature Music
## [doc1532]                      |Architecture| Art Literature Music
## [doc1533]                      |Architecture| Art Literature Music
## [doc1534]                      |Architecture| Art Literature Music
## [doc1535]                      |Architecture| Art Literature Music
## [doc1536]                      |Architecture| Art Literature Music
## [doc1537]                      |Architecture| Art Literature Music
## [doc1538]                      |Architecture| Art Literature Music
## [doc1539]                      |Architecture| Art Literature Music
## [doc1540]                      |Architecture| Art Literature Music
## [doc1541]                      |Architecture| Art Literature Music
## [doc1542]                      |Architecture| Art Literature Music
## [doc1543]                      |Architecture| Art Literature Music
## [doc1544]                      |Architecture| Art Literature Music
## [doc1545]                      |Architecture| Art Literature Music
## [doc1546]                      |Architecture| Art Literature Music
## [doc1547]                      |Architecture| Art Literature Music
## [doc1548]                      |Architecture| Art Literature Music
## [doc1549]                      |Architecture| Art Literature Music
## [doc1550]                      |Architecture| Art Literature Music
## [doc1551]                      |Architecture| Art Literature Music
## [doc1552]                      |Architecture| Art Literature Music
## [doc1553]                      |Architecture| Art Literature Music
## [doc1554]                      |Architecture| Art Literature Music
## [doc1555]                      |Architecture| Art Literature Music
## [doc1556]                      |Architecture| Art Literature Music
## [doc1557]                      |Architecture| Art Literature Music
## [doc1558]                      |Architecture| Art Literature Music
## [doc1559]                      |Architecture| Art Literature Music
## [doc1560]                      |Architecture| Art Literature Music
## [doc1561]                      |Architecture| Art Literature Music
## [doc1562]                      |Architecture| Art Literature Music
## [doc1562] es of Five Orders of |Architecture| ) ; [ ] in succeedin
## [doc1563]                      |Architecture| Art Literature Music
## [doc1564]                      |Architecture| Art Literature Music
## [doc1565]                      |Architecture| Art Literature Music
## [doc1566]                      |Architecture| Art Literature Music
## [doc1567]                      |Architecture| Art Literature Music
## [doc1568]                      |Architecture| Art Literature Music
## [doc1569]                      |Architecture| Art Literature Music
## [doc1570]                      |Architecture| Art Literature Music
## [doc1571]                      |Architecture| Art Literature Music
## [doc1572]                      |Architecture| Art Literature Music
## [doc1573]                      |Architecture| Art Literature Music
## [doc1574]                      |Architecture| Art Literature Music
## [doc1575]                      |Architecture| Art Literature Music
## [doc1576]                      |Architecture| Art Literature Music
## [doc1577]                      |Architecture| Art Literature Music
## [doc1578]                      |Architecture| Art Literature Music
## [doc1579]                      |Architecture| Art Literature Music
## [doc1580]                      |Architecture| Art Literature Music
## [doc1581]                      |Architecture| Art Literature Music
## [doc1582]                      |Architecture| Art Literature Music
## [doc1583]                      |Architecture| Art Literature Music
## [doc1584]                      |Architecture| Art Literature Music
## [doc1585]                      |Architecture| Art Literature Music
## [doc1586]                      |Architecture| Art Literature Music
## [doc1587]                      |Architecture| Art Literature Music
## [doc1588]                      |Architecture| Art Literature Music
## [doc1589]                      |Architecture| Art Literature Music
## [doc1590]                      |Architecture| Art Literature Music
## [doc1591]                      |Architecture| Art Literature Music
## [doc1592]                      |Architecture| Art Literature Music
## [doc1593]                      |Architecture| Art Literature Music
## [doc1594]                      |Architecture| Art Literature Music
## [doc1595]                      |Architecture| Art Literature Music
## [doc1596]                      |Architecture| Art Literature Music
## [doc1597]                      |Architecture| Art Literature Music
## [doc1598]                      |Architecture| Art Literature Music
## [doc1599]                      |Architecture| Art Literature Music
## [doc1600]                      |Architecture| Art Literature Music
## [doc1601]                      |Architecture| Art Literature Music
## [doc1602]                      |Architecture| Art Literature Music
## [doc1603]                      |Architecture| Art Literature Music
## [doc1604]                      |Architecture| Art Literature Music
## [doc1605]                      |Architecture| Art Literature Music
## [doc1606]                      |Architecture| Art Literature Music
## [doc1607]                      |Architecture| Art Literature Music
## [doc1608]                      |Architecture| Art Literature Music
## [doc1609]                      |Architecture| Art Literature Music
## [doc1610]                      |Architecture| Art Literature Music
## [doc1611]                      |Architecture| Art Literature Music
## [doc1612]                      |Architecture| Art Literature Music
## [doc1613]                      |Architecture| Art Literature Music
## [doc1614]                      |Architecture| Art Literature Music
## [doc1615]                      |Architecture| Art Literature Music
## [doc1616]                      |Architecture| Art Literature Music
## [doc1617]                      |Architecture| Art Literature Music
## [doc1618]                      |Architecture| Art Literature Music
## [doc1619]                      |Architecture| Art Literature Music
## [doc1620]                      |Architecture| Art Literature Music
## [doc1621]                      |Architecture| Art Literature Music
## [doc1622]                      |Architecture| Art Literature Music
## [doc1623]                      |Architecture| Art Literature Music
## [doc1624]                      |Architecture| Art Literature Music
## [doc1625]                      |Architecture| Art Literature Music
## [doc1626]                      |Architecture| Art Literature Music
## [doc1627]                      |Architecture| Art Literature Music
## [doc1628]                      |Architecture| Art Literature Music
## [doc1629]                      |Architecture| Art Literature Music
## [doc1630]                      |Architecture| Art Literature Music
## [doc1631]                      |Architecture| Art Literature Music
## [doc1632]                      |Architecture| Art Literature Music
## [doc1633]                      |Architecture| Art Literature Music
## [doc1634]                      |Architecture| Art Literature Music
## [doc1635]                      |Architecture| Art Literature Music
## [doc1636]                      |Architecture| Art Literature Music
## [doc1637]                      |Architecture| Art Literature Music
## [doc1638]                      |Architecture| Art Literature Music
## [doc1639]                      |Architecture| Art Literature Music
## [doc1640]                      |Architecture| Art Literature Music
## [doc1641]                      |Architecture| Art Literature Music
## [doc1642]                      |Architecture| Art Literature Music
## [doc1643]                      |Architecture| Art Literature Music
## [doc1644]                      |Architecture| Art Literature Music
## [doc1645]                      |Architecture| Art Literature Music
## [doc1646]                      |Architecture| Art Literature Music
## [doc1647]                      |Architecture| Art Literature Music
## [doc1648]                      |Architecture| Art Literature Music
## [doc1649]                      |Architecture| Art Literature Music
## [doc1650]                      |Architecture| Art Literature Music
## [doc1651]                      |Architecture| Art Literature Music
## [doc1652]                      |Architecture| Art Literature Music
## [doc1653]                      |Architecture| Art Literature Music
## [doc1654]                      |Architecture| Art Literature Music
## [doc1655]                      |Architecture| Art Literature Music
## [doc1656]                      |Architecture| Art Literature Music
## [doc1657]                      |Architecture| Art Literature Music
## [doc1658]                      |Architecture| Art Literature Music
## [doc1659]                      |Architecture| Art Literature Music
## [doc1660]                      |Architecture| Art Literature Music
## [doc1661]                      |Architecture| Art Literature Music
## [doc1662]                      |Architecture| Art Literature Music
## [doc1663]                      |Architecture| Art Literature Music
## [doc1664]                      |Architecture| Art Literature Music
## [doc1665]                      |Architecture| Art Literature Music
## [doc1666]                      |Architecture| Art Literature Music
## [doc1667]                      |Architecture| Art Literature Music
## [doc1668]                      |Architecture| Art Literature Music
## [doc1669]                      |Architecture| Art Literature Music
## [doc1670]                      |Architecture| Art Literature Music
## [doc1671]                      |Architecture| Art Literature Music
## [doc1672]                      |Architecture| Art Literature Music
## [doc1673]                      |Architecture| Art Literature Music
## [doc1674]                      |Architecture| Art Literature Music
## [doc1675]                      |Architecture| Art Literature Music
## [doc1676]                      |Architecture| Art Literature Music
## [doc1677]                      |Architecture| Art Literature Music
## [doc1678]                      |Architecture| Art Literature Music
## [doc1679]                      |Architecture| Art Literature Music
## [doc1680]                      |Architecture| Art Literature Music
## [doc1681]                      |Architecture| Art Literature Music
## [doc1682]                      |Architecture| Art Literature Music
## [doc1683]                      |Architecture| Art Literature Music
## [doc1684]                      |Architecture| Art Literature Music
## [doc1685]                      |Architecture| Art Literature Music
## [doc1686]                      |Architecture| Art Literature Music
## [doc1687]                      |Architecture| Art Literature Music
## [doc1688]                      |Architecture| Art Literature Music
## [doc1689]                      |Architecture| Art Literature Music
## [doc1690]                      |Architecture| Art Literature Music
## [doc1691]                      |Architecture| Art Literature Music
## [doc1692]                      |Architecture| Art Literature Music
## [doc1693]                      |Architecture| Art Literature Music
## [doc1694]                      |Architecture| Art Literature Music
## [doc1695]                      |Architecture| Art Literature Music
## [doc1696]                      |Architecture| Art Literature Music
## [doc1697]                      |Architecture| Art Literature Music
## [doc1698]                      |Architecture| Art Literature Music
## [doc1699]                      |Architecture| Art Literature Music
## [doc1700]                      |Architecture| Art Literature Music
## [doc1701]          Archaeology |Architecture| Art Literature Poetr
## [doc1702]          Archaeology |Architecture| Art Literature Poetr
## [doc1703]          Archaeology |Architecture| Art Literature Poetr
## [doc1704]          Archaeology |Architecture| Art Literature Poetr
## [doc1705]          Archaeology |Architecture| Art Literature Poetr
## [doc1706]          Archaeology |Architecture| Art Literature Poetr
## [doc1707]          Archaeology |Architecture| Art Literature Poetr
## [doc1708]          Archaeology |Architecture| Art Literature Poetr
## [doc1709]          Archaeology |Architecture| Art Literature Poetr
## [doc1710]          Archaeology |Architecture| Art Literature Poetr
## [doc1711]          Archaeology |Architecture| Art Literature Poetr
## [doc1712]          Archaeology |Architecture| Art Literature Poetr
## [doc1713]          Archaeology |Architecture| Art Literature Poetr
## [doc1714]          Archaeology |Architecture| Art Literature Poetr
## [doc1715]          Archaeology |Architecture| Art Literature Poetr
## [doc1716]          Archaeology |Architecture| Art Literature Poetr
## [doc1717]          Archaeology |Architecture| Art Literature Poetr
## [doc1718]          Archaeology |Architecture| Art Literature Poetr
## [doc1719]          Archaeology |Architecture| Art Literature Poetr
## [doc1720]          Archaeology |Architecture| Art Literature Poetr
## [doc1721]          Archaeology |Architecture| Art Literature Poetr
## [doc1722]          Archaeology |Architecture| Art Literature Poetr
## [doc1723]          Archaeology |Architecture| Art Literature Poetr
## [doc1724]          Archaeology |Architecture| Art Literature Poetr
## [doc1725]          Archaeology |Architecture| Art Literature Poetr
## [doc1726]          Archaeology |Architecture| Art Literature Poetr
## [doc1727]          Archaeology |Architecture| Art Literature Poetr
## [doc1728]          Archaeology |Architecture| Art Literature Poetr
## [doc1729]          Archaeology |Architecture| Art Literature Poetr
## [doc1730]          Archaeology |Architecture| Art Literature Poetr
## [doc1731]          Archaeology |Architecture| Art Literature Poetr
## [doc1732]          Archaeology |Architecture| Art Literature Poetr
## [doc1733]          Archaeology |Architecture| Art Literature Poetr
## [doc1734]          Archaeology |Architecture| Art Literature Poetr
## [doc1735]          Archaeology |Architecture| Art Literature Poetr
## [doc1736]          Archaeology |Architecture| Art Literature Poetr
## [doc1737]  Novels , Painting , |Architecture| , and all other Scie
## [doc1737]          Archaeology |Architecture| Art Literature Poetr
## [doc1738]          Archaeology |Architecture| Art Literature Poetr
## [doc1739]          Archaeology |Architecture| Art Literature Poetr
## [doc1740]          Archaeology |Architecture| Art Literature Poetr
## [doc1741]          Archaeology |Architecture| Art Literature Poetr
## [doc1742]          Archaeology |Architecture| Art Literature Poetr
## [doc1743]          Archaeology |Architecture| Art Literature Poetr
## [doc1744]          Archaeology |Architecture| Art Literature Poetr
## [doc1745]          Archaeology |Architecture| Art Literature Poetr
## [doc1746]          Archaeology |Architecture| Art Literature Poetr
## [doc1747]          Archaeology |Architecture| Art Literature Poetr
## [doc1748]          Archaeology |Architecture| Art Literature Poetr
## [doc1749]          Archaeology |Architecture| Art Literature Poetr
## [doc1750]          Archaeology |Architecture| Art Literature Poetr
## [doc1751]          Archaeology |Architecture| Art Literature Poetr
## [doc1752]          Archaeology |Architecture| Art Literature Poetr
## [doc1753]          Archaeology |Architecture| Art Literature Poetr
## [doc1754]          Archaeology |Architecture| Art Literature Poetr
## [doc1755]          Archaeology |Architecture| Art Literature Poetr
## [doc1756]          Archaeology |Architecture| Art Literature Poetr
## [doc1757]          Archaeology |Architecture| Art Literature Poetr
## [doc1758]          Archaeology |Architecture| Art Literature Poetr
## [doc1759]          Archaeology |Architecture| Art Literature Poetr
## [doc1760]          Archaeology |Architecture| Art Literature Poetr
## [doc1761]          Archaeology |Architecture| Art Literature Poetr
## [doc1762]          Archaeology |Architecture| Art Literature Poetr
## [doc1763]          Archaeology |Architecture| Art Literature Poetr
## [doc1764]          Archaeology |Architecture| Art Literature Poetr
## [doc1765]          Archaeology |Architecture| Art Literature Poetr
## [doc1766]          Archaeology |Architecture| Art Literature Poetr
## [doc1767]          Archaeology |Architecture| Art Literature Poetr
## [doc1768]          Archaeology |Architecture| Art Literature Poetr
## [doc1769]          Archaeology |Architecture| Art Literature Poetr
## [doc1770]          Archaeology |Architecture| Art Literature Poetr
## [doc1771]          Archaeology |Architecture| Art Literature Poetr
## [doc1772]          Archaeology |Architecture| Art Literature Poetr
## [doc1773]          Archaeology |Architecture| Art Literature Poetr
## [doc1774]          Archaeology |Architecture| Art Literature Poetr
## [doc1775]          Archaeology |Architecture| Art Literature Poetr
## [doc1776]          Archaeology |Architecture| Art Literature Poetr
## [doc1777]          Archaeology |Architecture| Art Literature Poetr
## [doc1778]          Archaeology |Architecture| Art Literature Poetr
## [doc1779]          Archaeology |Architecture| Art Literature Poetr
## [doc1780]          Archaeology |Architecture| Art Literature Poetr
## [doc1781]          Archaeology |Architecture| Art Literature Poetr
## [doc1782]          Archaeology |Architecture| Art Literature Poetr
## [doc1783]          Archaeology |Architecture| Art Literature Poetr
## [doc1784]          Archaeology |Architecture| Art Literature Poetr
## [doc1785]          Archaeology |Architecture| Art Literature Poetr
## [doc1786]          Archaeology |Architecture| Art Literature Poetr
## [doc1787]          Archaeology |Architecture| Art Literature Poetr
## [doc1788]          Archaeology |Architecture| Art Literature Poetr
## [doc1789]          Archaeology |Architecture| Art Literature Poetr
## [doc1790]          Archaeology |Architecture| Art Literature Poetr
## [doc1791]          Archaeology |Architecture| Art Literature Poetr
## [doc1792]          Archaeology |Architecture| Art Literature Poetr
## [doc1793]          Archaeology |Architecture| Art Literature Poetr
## [doc1794]          Archaeology |Architecture| Art Literature Poetr
## [doc1795]          Archaeology |Architecture| Art Literature Poetr
## [doc1796]          Archaeology |Architecture| Art Literature Poetr
## [doc1797]          Archaeology |Architecture| Art Literature Poetr
## [doc1798]          Archaeology |Architecture| Art Literature Poetr
## [doc1799]          Archaeology |Architecture| Art Literature Poetr
## [doc1800]          Archaeology |Architecture| Art Literature Poetr
## [doc1847] ssociation School of |Architecture| is founded in London
## [doc1901]          Archaeology |Architecture| Art Aviation Awards 
## [doc1902]          Archaeology |Architecture| Art Aviation Awards 
## [doc1903]          Archaeology |Architecture| Art Aviation Awards 
## [doc1904]          Archaeology |Architecture| Art Aviation Awards 
## [doc1905]          Archaeology |Architecture| Art Aviation Awards 
## [doc1906]          Archaeology |Architecture| Art Aviation Awards 
## [doc1907] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1908] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1909] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1910] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1911] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1912] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1913] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1914] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1915] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1916] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1917] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1918] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1919] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1920] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1921] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1922] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1923] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1924] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1925] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1926] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1927] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1928] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1929] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1930] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1931] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1932] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1933] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1934] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1935] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1936] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1937] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1938] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1939] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1940] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1941] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1942] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1943] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1944] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1945] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1946] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1947] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1948] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1949] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1950] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1951] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1952] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1953] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1954] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1955] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1956] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1957] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1958] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1959] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1960] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1961] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1962] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1963] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1964] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1965] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1966] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1967] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1968] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1969] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1970] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1971] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1972] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1973] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1975] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1976] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1977] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1978] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1979] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1980] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1981] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1982] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1983] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1984] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1985] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1986] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1987] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1988] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1989] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1990] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1991] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1992] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1993] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1994] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1995] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1996] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1997] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1998] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc1999] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc2000] me Anime Archaeology |Architecture| Art Aviation Awards 
## [doc2020] c Poetry Video games |Architecture| Aviation Radio Telev
## [doc2021] c Poetry Video games |Architecture| Aviation Radio Telev
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "red") +
  labs(title = "Architecture", subtitles = "Number of Wikipedia Pages of Years That Mention Architecture For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "Meteorology", n = 2000000000000) %>%
  substr(2,8)
## [doc1901] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1902] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1903] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1904] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1905] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1906] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1907] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1908] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1909] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1910] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1911] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1912] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1913] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1914] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1915] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1916] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1917] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1918] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1919] rature Poetry Poetry |Meteorology| Music Jazz Jazz Rail
## [doc1920] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1921] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1922] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1923] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1924] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1925] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1926] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1927] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1928] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1929] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1930] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1931] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1932] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1933] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1934] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1935] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1936] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1937] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1938] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1939] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1940] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1941] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1942] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1943] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1944] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1945] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1946] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1947] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1948] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1949] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1950] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1951] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1952] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1953] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1954] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1955] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1956] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1957] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1958] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1959] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1960] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1961] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1962] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1963] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1964] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1965] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1966] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1967] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1968] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1969] rature Poetry Poetry |Meteorology| Music Country Jazz C
## [doc1970] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1971] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1972] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1973] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1975] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1976] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1977] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1978] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1979] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1980] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1981] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1982] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1983] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1984] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1985] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1986] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1987] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1988] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1989] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1990] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1991] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1992] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1993] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1994] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1995] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1996] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1997] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1998] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc1999] rature Poetry Poetry |Meteorology| Music Country Heavy 
## [doc2000] rature Poetry Poetry |Meteorology| Music Country Heavy
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "magenta") +
  labs(title = "Meteorology", subtitles = "Number of Wikipedia Pages of Years That Mention Meteorology For Each Century", x = "Century", y = "Number of Years")

get <- dsst_kwic(anno, terms = "governors", n = 2000000000000) %>%
  substr(2,8)
## [doc0193]                Roman |governors| Clodius Albinus ( Br
## [doc0293] ngly divided between |governors| and generals ( duces
## [doc0377] ppeal for help , but |governors| Lupicinus and Maximu
## [doc0628] Tong Yabghu appoints |governors| ( tuduns ) to manage
## [doc0777] ern Iberia , such as |governors| of Barcelona and Zar
## [doc0827]  and installs Bulgar |governors| over Slavic tribes t
## [doc1099]          There local |governors| supply Crusaders wit
## [doc1148]               Seljuk |governors| of frontier province
## [doc1273] rant a truce to Banu |governors| ( arraeces ) of Mála
## [doc1289]   He orders regional |governors| of Syria to mobilize
## [doc1303]        The Byzantine |governors| ( tekfurs ) of Prusa
## [doc1320] He appoints military |governors| in Punjab and Sindh 
## [doc1501] ate leaders Colonial |governors| Religious leaders Wo
## [doc1502] ate leaders Colonial |governors| Religious leaders Wo
## [doc1503] ate leaders Colonial |governors| Religious leaders Wo
## [doc1504] ate leaders Colonial |governors| Religious leaders Wo
## [doc1505] ate leaders Colonial |governors| Religious leaders Wo
## [doc1506] ate leaders Colonial |governors| Religious leaders Wo
## [doc1507] ate leaders Colonial |governors| Religious leaders Wo
## [doc1508] ate leaders Colonial |governors| Religious leaders Wo
## [doc1509] ate leaders Colonial |governors| Religious leaders Wo
## [doc1510] ate leaders Colonial |governors| Religious leaders Wo
## [doc1511] ate leaders Colonial |governors| Religious leaders Wo
## [doc1512] ate leaders Colonial |governors| Religious leaders Wo
## [doc1513] ate leaders Colonial |governors| Religious leaders Wo
## [doc1514] ate leaders Colonial |governors| Religious leaders Wo
## [doc1515] ate leaders Colonial |governors| Religious leaders Wo
## [doc1516] ate leaders Colonial |governors| Religious leaders Wo
## [doc1517] ate leaders Colonial |governors| Religious leaders Wo
## [doc1518] ate leaders Colonial |governors| Religious leaders Wo
## [doc1519] ate leaders Colonial |governors| Religious leaders Wo
## [doc1520] ate leaders Colonial |governors| Religious leaders Wo
## [doc1521] ate leaders Colonial |governors| Religious leaders Wo
## [doc1522] ate leaders Colonial |governors| Religious leaders Wo
## [doc1523] ate leaders Colonial |governors| Religious leaders Wo
## [doc1524] ate leaders Colonial |governors| Religious leaders Wo
## [doc1525] ate leaders Colonial |governors| Religious leaders Wo
## [doc1526] ate leaders Colonial |governors| Religious leaders Wo
## [doc1527] ate leaders Colonial |governors| Religious leaders Wo
## [doc1528] ate leaders Colonial |governors| Religious leaders Wo
## [doc1529] ate leaders Colonial |governors| Religious leaders Wo
## [doc1530] ate leaders Colonial |governors| Religious leaders Wo
## [doc1531] ate leaders Colonial |governors| Religious leaders Wo
## [doc1532] ate leaders Colonial |governors| Religious leaders Wo
## [doc1533] ate leaders Colonial |governors| Religious leaders Wo
## [doc1534] ate leaders Colonial |governors| Religious leaders Wo
## [doc1535] ate leaders Colonial |governors| Religious leaders Wo
## [doc1536] ate leaders Colonial |governors| Religious leaders Wo
## [doc1537] ate leaders Colonial |governors| Religious leaders Wo
## [doc1538] ate leaders Colonial |governors| Religious leaders Wo
## [doc1539] ate leaders Colonial |governors| Religious leaders Wo
## [doc1540] ate leaders Colonial |governors| Religious leaders Wo
## [doc1541] ate leaders Colonial |governors| Religious leaders Wo
## [doc1542] ate leaders Colonial |governors| Religious leaders Wo
## [doc1543] ate leaders Colonial |governors| Religious leaders Wo
## [doc1544] ate leaders Colonial |governors| Religious leaders Wo
## [doc1545] ate leaders Colonial |governors| Religious leaders Wo
## [doc1546] ate leaders Colonial |governors| Religious leaders Wo
## [doc1547] ate leaders Colonial |governors| Religious leaders Wo
## [doc1548] ate leaders Colonial |governors| Religious leaders Wo
## [doc1549] ate leaders Colonial |governors| Religious leaders Wo
## [doc1550] ate leaders Colonial |governors| Religious leaders Wo
## [doc1551] ate leaders Colonial |governors| Religious leaders Wo
## [doc1552] ate leaders Colonial |governors| Religious leaders Wo
## [doc1553] ate leaders Colonial |governors| Religious leaders Wo
## [doc1554] ate leaders Colonial |governors| Religious leaders Wo
## [doc1555] ate leaders Colonial |governors| Religious leaders Wo
## [doc1556] ate leaders Colonial |governors| Religious leaders Wo
## [doc1557] ate leaders Colonial |governors| Religious leaders Wo
## [doc1558] ate leaders Colonial |governors| Religious leaders Wo
## [doc1559] ate leaders Colonial |governors| Religious leaders Wo
## [doc1560] ate leaders Colonial |governors| Religious leaders Wo
## [doc1561] ate leaders Colonial |governors| Religious leaders Wo
## [doc1562] ate leaders Colonial |governors| Religious leaders Wo
## [doc1563] ate leaders Colonial |governors| Religious leaders Wo
## [doc1564] ate leaders Colonial |governors| Religious leaders Wo
## [doc1565] ate leaders Colonial |governors| Religious leaders Wo
## [doc1566] ate leaders Colonial |governors| Religious leaders Wo
## [doc1567] ate leaders Colonial |governors| Religious leaders Wo
## [doc1568] ate leaders Colonial |governors| Religious leaders Wo
## [doc1569] ate leaders Colonial |governors| Religious leaders Wo
## [doc1570] ate leaders Colonial |governors| Religious leaders Wo
## [doc1571] ate leaders Colonial |governors| Religious leaders Wo
## [doc1572] ate leaders Colonial |governors| Religious leaders Wo
## [doc1573] ate leaders Colonial |governors| Religious leaders Wo
## [doc1574] ate leaders Colonial |governors| Religious leaders Wo
## [doc1575] ate leaders Colonial |governors| Religious leaders Wo
## [doc1576] ate leaders Colonial |governors| Religious leaders Wo
## [doc1577] ate leaders Colonial |governors| Religious leaders Wo
## [doc1578] ate leaders Colonial |governors| Religious leaders Wo
## [doc1579] ate leaders Colonial |governors| Religious leaders Wo
## [doc1580] ate leaders Colonial |governors| Religious leaders Wo
## [doc1581] ate leaders Colonial |governors| Religious leaders Wo
## [doc1582] ate leaders Colonial |governors| Religious leaders Wo
## [doc1583] ate leaders Colonial |governors| Religious leaders Wo
## [doc1584] ate leaders Colonial |governors| Religious leaders Wo
## [doc1585] ate leaders Colonial |governors| Religious leaders Wo
## [doc1586] ate leaders Colonial |governors| Religious leaders Wo
## [doc1587] ate leaders Colonial |governors| Religious leaders Wo
## [doc1588] ate leaders Colonial |governors| Religious leaders Wo
## [doc1589] ate leaders Colonial |governors| Religious leaders Wo
## [doc1590] ate leaders Colonial |governors| Religious leaders Wo
## [doc1591] ate leaders Colonial |governors| Religious leaders Wo
## [doc1592] ate leaders Colonial |governors| Religious leaders Wo
## [doc1593] ate leaders Colonial |governors| Religious leaders Wo
## [doc1594] ate leaders Colonial |governors| Religious leaders Wo
## [doc1595] ate leaders Colonial |governors| Religious leaders Wo
## [doc1596] ate leaders Colonial |governors| Religious leaders Wo
## [doc1597] ate leaders Colonial |governors| Religious leaders Wo
## [doc1598] ate leaders Colonial |governors| Religious leaders Wo
## [doc1599] ate leaders Colonial |governors| Religious leaders Wo
## [doc1600] ate leaders Colonial |governors| Religious leaders Wo
## [doc1601] ate leaders Colonial |governors| Religious leaders Wo
## [doc1602] ate leaders Colonial |governors| Religious leaders Wo
## [doc1603] ate leaders Colonial |governors| Religious leaders Wo
## [doc1604] ate leaders Colonial |governors| Religious leaders Wo
## [doc1605] ate leaders Colonial |governors| Religious leaders Wo
## [doc1606] ate leaders Colonial |governors| Religious leaders Wo
## [doc1607] ate leaders Colonial |governors| Religious leaders Wo
## [doc1608] ate leaders Colonial |governors| Religious leaders Wo
## [doc1609] ate leaders Colonial |governors| Religious leaders Wo
## [doc1610] ate leaders Colonial |governors| Religious leaders Wo
## [doc1611] ate leaders Colonial |governors| Religious leaders Wo
## [doc1612] ate leaders Colonial |governors| Religious leaders Wo
## [doc1613] ate leaders Colonial |governors| Religious leaders Wo
## [doc1614] ate leaders Colonial |governors| Religious leaders Wo
## [doc1615] ate leaders Colonial |governors| Religious leaders Wo
## [doc1616] ate leaders Colonial |governors| Religious leaders Wo
## [doc1617] ate leaders Colonial |governors| Religious leaders Wo
## [doc1618] ate leaders Colonial |governors| Religious leaders Wo
## [doc1619] ate leaders Colonial |governors| Religious leaders Wo
## [doc1620] ate leaders Colonial |governors| Religious leaders Wo
## [doc1621] ate leaders Colonial |governors| Religious leaders Wo
## [doc1622] ate leaders Colonial |governors| Religious leaders Wo
## [doc1623] ate leaders Colonial |governors| Religious leaders Wo
## [doc1624] ate leaders Colonial |governors| Religious leaders Wo
## [doc1625] ate leaders Colonial |governors| Religious leaders Wo
## [doc1626] ate leaders Colonial |governors| Religious leaders Wo
## [doc1627] ate leaders Colonial |governors| Religious leaders Wo
## [doc1628] ate leaders Colonial |governors| Religious leaders Wo
## [doc1629] ate leaders Colonial |governors| Religious leaders Wo
## [doc1630] ate leaders Colonial |governors| Religious leaders Wo
## [doc1631] ate leaders Colonial |governors| Religious leaders Wo
## [doc1632] ate leaders Colonial |governors| Religious leaders Wo
## [doc1633] ate leaders Colonial |governors| Religious leaders Wo
## [doc1634] ate leaders Colonial |governors| Religious leaders Wo
## [doc1635] ate leaders Colonial |governors| Religious leaders Wo
## [doc1636] ate leaders Colonial |governors| Religious leaders Wo
## [doc1637] ate leaders Colonial |governors| Religious leaders Wo
## [doc1638] ate leaders Colonial |governors| Religious leaders Wo
## [doc1639] ate leaders Colonial |governors| Religious leaders Wo
## [doc1640] ate leaders Colonial |governors| Religious leaders Wo
## [doc1641] ate leaders Colonial |governors| Religious leaders Wo
## [doc1642] ate leaders Colonial |governors| Religious leaders Wo
## [doc1643] ate leaders Colonial |governors| Religious leaders Wo
## [doc1644] ate leaders Colonial |governors| Religious leaders Wo
## [doc1645] ate leaders Colonial |governors| Religious leaders Wo
## [doc1646] ate leaders Colonial |governors| Religious leaders Wo
## [doc1647] ate leaders Colonial |governors| Religious leaders Wo
## [doc1648] ate leaders Colonial |governors| Religious leaders Wo
## [doc1649] ate leaders Colonial |governors| Religious leaders Wo
## [doc1650] ate leaders Colonial |governors| Religious leaders Wo
## [doc1651] ate leaders Colonial |governors| Religious leaders Wo
## [doc1652] ate leaders Colonial |governors| Religious leaders Wo
## [doc1653] ate leaders Colonial |governors| Religious leaders Wo
## [doc1654] ate leaders Colonial |governors| Religious leaders Wo
## [doc1655] ate leaders Colonial |governors| Religious leaders Wo
## [doc1656] ate leaders Colonial |governors| Religious leaders Wo
## [doc1657] ate leaders Colonial |governors| Religious leaders Wo
## [doc1658] ate leaders Colonial |governors| Religious leaders Wo
## [doc1659] ate leaders Colonial |governors| Religious leaders Wo
## [doc1660] ate leaders Colonial |governors| Religious leaders Wo
## [doc1661] ate leaders Colonial |governors| Religious leaders Wo
## [doc1662] ate leaders Colonial |governors| Religious leaders Wo
## [doc1663] ate leaders Colonial |governors| Religious leaders Wo
## [doc1664] ate leaders Colonial |governors| Religious leaders Wo
## [doc1665] ate leaders Colonial |governors| Religious leaders Wo
## [doc1666] ate leaders Colonial |governors| Religious leaders Wo
## [doc1667] ate leaders Colonial |governors| Religious leaders Wo
## [doc1668] ate leaders Colonial |governors| Religious leaders Wo
## [doc1669] ate leaders Colonial |governors| Religious leaders Wo
## [doc1670] ate leaders Colonial |governors| Religious leaders Wo
## [doc1671] ate leaders Colonial |governors| Religious leaders Wo
## [doc1672] ate leaders Colonial |governors| Religious leaders Wo
## [doc1673] ally active Canadian |governors| ' wife ( d. )       
## [doc1673] ate leaders Colonial |governors| Religious leaders Wo
## [doc1674] ate leaders Colonial |governors| Religious leaders Wo
## [doc1675] ate leaders Colonial |governors| Religious leaders Wo
## [doc1676] ate leaders Colonial |governors| Religious leaders Wo
## [doc1677] ate leaders Colonial |governors| Religious leaders Wo
## [doc1678] ate leaders Colonial |governors| Religious leaders Wo
## [doc1679] ate leaders Colonial |governors| Religious leaders Wo
## [doc1680] ate leaders Colonial |governors| Religious leaders Wo
## [doc1681] ate leaders Colonial |governors| Religious leaders Wo
## [doc1682] ate leaders Colonial |governors| Religious leaders Wo
## [doc1683] ate leaders Colonial |governors| Religious leaders Wo
## [doc1684] ate leaders Colonial |governors| Religious leaders Wo
## [doc1685] ate leaders Colonial |governors| Religious leaders Wo
## [doc1686] ate leaders Colonial |governors| Religious leaders Wo
## [doc1687] ate leaders Colonial |governors| Religious leaders Wo
## [doc1688] ate leaders Colonial |governors| Religious leaders Wo
## [doc1689] ate leaders Colonial |governors| Religious leaders Wo
## [doc1690] ate leaders Colonial |governors| Religious leaders Wo
## [doc1691] ate leaders Colonial |governors| Religious leaders Wo
## [doc1692] ate leaders Colonial |governors| Religious leaders Wo
## [doc1693] ate leaders Colonial |governors| Religious leaders Wo
## [doc1694] ate leaders Colonial |governors| Religious leaders Wo
## [doc1695] ate leaders Colonial |governors| Religious leaders Wo
## [doc1696] ate leaders Colonial |governors| Religious leaders Wo
## [doc1697] ate leaders Colonial |governors| Religious leaders Wo
## [doc1698] ate leaders Colonial |governors| Religious leaders Wo
## [doc1699] ate leaders Colonial |governors| Religious leaders Wo
## [doc1700] ate leaders Colonial |governors| Religious leaders Wo
## [doc1701] ate leaders Colonial |governors| Religious leaders Bi
## [doc1702] ate leaders Colonial |governors| Religious leaders Bi
## [doc1703] ate leaders Colonial |governors| Religious leaders Bi
## [doc1704] ate leaders Colonial |governors| Religious leaders Bi
## [doc1705] ate leaders Colonial |governors| Religious leaders Bi
## [doc1706] ate leaders Colonial |governors| Religious leaders Bi
## [doc1707] ate leaders Colonial |governors| Religious leaders Bi
## [doc1708] ate leaders Colonial |governors| Religious leaders Bi
## [doc1709] ate leaders Colonial |governors| Religious leaders Bi
## [doc1710] ate leaders Colonial |governors| Religious leaders Bi
## [doc1711] ate leaders Colonial |governors| Religious leaders Bi
## [doc1712] ate leaders Colonial |governors| Religious leaders Bi
## [doc1713] ate leaders Colonial |governors| Religious leaders Bi
## [doc1714] ate leaders Colonial |governors| Religious leaders Bi
## [doc1715] ate leaders Colonial |governors| Religious leaders Bi
## [doc1716] ate leaders Colonial |governors| Religious leaders Bi
## [doc1717] ate leaders Colonial |governors| Religious leaders Bi
## [doc1718] ate leaders Colonial |governors| Religious leaders Bi
## [doc1719] ate leaders Colonial |governors| Religious leaders Bi
## [doc1720] ate leaders Colonial |governors| Religious leaders Bi
## [doc1721] ate leaders Colonial |governors| Religious leaders Bi
## [doc1722] ate leaders Colonial |governors| Religious leaders Bi
## [doc1723] ate leaders Colonial |governors| Religious leaders Bi
## [doc1724] ate leaders Colonial |governors| Religious leaders Bi
## [doc1725] ate leaders Colonial |governors| Religious leaders Bi
## [doc1726] ate leaders Colonial |governors| Religious leaders Bi
## [doc1727] ate leaders Colonial |governors| Religious leaders Bi
## [doc1728] ate leaders Colonial |governors| Religious leaders Bi
## [doc1729] ate leaders Colonial |governors| Religious leaders Bi
## [doc1730] ate leaders Colonial |governors| Religious leaders Bi
## [doc1731] ate leaders Colonial |governors| Religious leaders Bi
## [doc1732] ate leaders Colonial |governors| Religious leaders Bi
## [doc1733] ate leaders Colonial |governors| Religious leaders Bi
## [doc1734] ate leaders Colonial |governors| Religious leaders Bi
## [doc1735] ate leaders Colonial |governors| Religious leaders Bi
## [doc1736] ate leaders Colonial |governors| Religious leaders Bi
## [doc1737] ate leaders Colonial |governors| Religious leaders Bi
## [doc1738] ate leaders Colonial |governors| Religious leaders Bi
## [doc1739] ate leaders Colonial |governors| Religious leaders Bi
## [doc1740] ally active Canadian |governors| ' wife ( b. )       
## [doc1740] ate leaders Colonial |governors| Religious leaders Bi
## [doc1741] ate leaders Colonial |governors| Religious leaders Bi
## [doc1742] ate leaders Colonial |governors| Religious leaders Bi
## [doc1743] ate leaders Colonial |governors| Religious leaders Bi
## [doc1744] ate leaders Colonial |governors| Religious leaders Bi
## [doc1745] ate leaders Colonial |governors| Religious leaders Bi
## [doc1746] ate leaders Colonial |governors| Religious leaders Bi
## [doc1747] ate leaders Colonial |governors| Religious leaders Bi
## [doc1748] ate leaders Colonial |governors| Religious leaders Bi
## [doc1749] ate leaders Colonial |governors| Religious leaders Bi
## [doc1750] ate leaders Colonial |governors| Religious leaders Bi
## [doc1751] ate leaders Colonial |governors| Religious leaders Bi
## [doc1752] ate leaders Colonial |governors| Religious leaders Bi
## [doc1753] he message instructs |governors| King George II has o
## [doc1753] onial and provincial |governors| of Maryland , Massac
## [doc1753]  Britain 's colonial |governors| to prevent , by Forc
## [doc1753] ate leaders Colonial |governors| Religious leaders Bi
## [doc1754] ate leaders Colonial |governors| Religious leaders Bi
## [doc1755] ate leaders Colonial |governors| Religious leaders Bi
## [doc1756] ate leaders Colonial |governors| Religious leaders Bi
## [doc1757] ate leaders Colonial |governors| Religious leaders Bi
## [doc1758] ate leaders Colonial |governors| Religious leaders Bi
## [doc1759] ate leaders Colonial |governors| Religious leaders Bi
## [doc1760] ate leaders Colonial |governors| Religious leaders Bi
## [doc1761] ate leaders Colonial |governors| Religious leaders Bi
## [doc1762] ate leaders Colonial |governors| Religious leaders Bi
## [doc1763] ate leaders Colonial |governors| Religious leaders Bi
## [doc1764] ate leaders Colonial |governors| Religious leaders Bi
## [doc1765] ate leaders Colonial |governors| Religious leaders Bi
## [doc1766] ate leaders Colonial |governors| Religious leaders Bi
## [doc1767] ate leaders Colonial |governors| Religious leaders Bi
## [doc1768] ate leaders Colonial |governors| Religious leaders Bi
## [doc1769] ate leaders Colonial |governors| Religious leaders Bi
## [doc1770] ate leaders Colonial |governors| Religious leaders Bi
## [doc1771] ate leaders Colonial |governors| Religious leaders Bi
## [doc1772] ate leaders Colonial |governors| Religious leaders Bi
## [doc1773] ate leaders Colonial |governors| Religious leaders Bi
## [doc1774] ate leaders Colonial |governors| Religious leaders Bi
## [doc1775] ate leaders Colonial |governors| Religious leaders Bi
## [doc1776] ate leaders Colonial |governors| Religious leaders Bi
## [doc1777] ate leaders Colonial |governors| Religious leaders Bi
## [doc1778] ate leaders Colonial |governors| Religious leaders Bi
## [doc1779] ate leaders Colonial |governors| Religious leaders Bi
## [doc1780] ate leaders Colonial |governors| Religious leaders Bi
## [doc1781] ate leaders Colonial |governors| Religious leaders Bi
## [doc1782] ate leaders Colonial |governors| Religious leaders Bi
## [doc1783] ate leaders Colonial |governors| Religious leaders Bi
## [doc1783] on sends a letter to |governors| of Confederation of 
## [doc1784] ate leaders Colonial |governors| Religious leaders Bi
## [doc1785] ate leaders Colonial |governors| Religious leaders Bi
## [doc1786] ate leaders Colonial |governors| Religious leaders Bi
## [doc1787] ate leaders Colonial |governors| Religious leaders Bi
## [doc1788] ate leaders Colonial |governors| Religious leaders Bi
## [doc1789] ate leaders Colonial |governors| Religious leaders Bi
## [doc1790] ate leaders Colonial |governors| Religious leaders Bi
## [doc1791] ate leaders Colonial |governors| Religious leaders Bi
## [doc1792] ate leaders Colonial |governors| Religious leaders Bi
## [doc1793] ate leaders Colonial |governors| Religious leaders Bi
## [doc1794] ate leaders Colonial |governors| Religious leaders Bi
## [doc1795] ate leaders Colonial |governors| Religious leaders Bi
## [doc1796] ate leaders Colonial |governors| Religious leaders Bi
## [doc1797] ate leaders Colonial |governors| Religious leaders Bi
## [doc1798] ate leaders Colonial |governors| Religious leaders Bi
## [doc1799] ate leaders Colonial |governors| Religious leaders Bi
## [doc1800] ate leaders Colonial |governors| Religious leaders Bi
## [doc1989]        Bank of Japan |governors| announce a major int
## [doc1989]        Bank of Japan |governors| announce a major int
## [doc2020] nial and territorial |governors| Leaders of internati
## [doc2021] nial and territorial |governors| Leaders of internati
docs %>%
  filter(doc_id %in% get) %>%
  group_by(century) %>%
  summarize(num = n()) %>%
  ggplot(aes(x = reorder(century, century), y = num)) +
  geom_col(fill = "dark green") +
  labs(title = "Governors", subtitles = "Number of Wikipedia Pages of Years That Mention Governors For Each Century", x = "Century", y = "Number of Years")